roadie/Roadie.Api.Library/Configuration/IDlna.cs

14 lines
384 B
C#
Raw Normal View History

2019-09-05 02:04:20 +00:00
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; }
}
}