mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
28 lines
662 B
C#
28 lines
662 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Roadie.Library.Configuration
|
|
{
|
|
[Serializable]
|
|
public class Dlna : IDlna
|
|
{
|
|
public bool IsEnabled { get; set; }
|
|
|
|
public int? Port { get; set; }
|
|
|
|
public string FriendlyName { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public IEnumerable<string> AllowedIps { get; set; } = new string[0];
|
|
public IEnumerable<string> AllowedUserAgents { get; set; } = new string[0];
|
|
|
|
public Dlna()
|
|
{
|
|
IsEnabled = true;
|
|
FriendlyName = "Roadie Music Server";
|
|
}
|
|
}
|
|
}
|