jellyfin/MediaBrowser.Model/Configuration/DlnaOptions.cs

17 lines
388 B
C#
Raw Normal View History

2014-03-10 17:38:53 +00:00

namespace MediaBrowser.Model.Configuration
{
public class DlnaOptions
{
public bool EnablePlayTo { get; set; }
2014-03-23 20:49:05 +00:00
public bool EnableDebugLogging { get; set; }
public int ClientDiscoveryIntervalSeconds { get; set; }
2014-03-16 01:41:27 +00:00
public DlnaOptions()
{
EnablePlayTo = true;
2014-03-23 20:49:05 +00:00
ClientDiscoveryIntervalSeconds = 30;
2014-03-16 01:41:27 +00:00
}
2014-03-10 17:38:53 +00:00
}
}