mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
14 lines
No EOL
384 B
C#
14 lines
No EOL
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; }
|
|
}
|
|
} |