roadie/Roadie.Api.Library/Configuration/IDlna.cs
Steven Hildreth c08ce7676c resolves #10
2019-09-04 21:04:20 -05:00

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; }
}
}