mirror of
https://github.com/sphildreth/roadie
synced 2024-11-26 22:20:21 +00:00
14 lines
384 B
C#
14 lines
384 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Roadie.Library.Configuration
|
|||
|
{
|
|||
|
public interface IDlna
|
|||
|
{
|
|||
|
bool IsEnabled { get; set; }
|
|||
|
string Description { get; set; }
|
|||
|
string FriendlyName { get; set; }
|
|||
|
int? Port { get; set; }
|
|||
|
IEnumerable<string> AllowedIps { get; set; }
|
|||
|
IEnumerable<string> AllowedUserAgents { get; set; }
|
|||
|
}
|
|||
|
}
|