jellyfin/MediaBrowser.Model/Configuration/DlnaOptions.cs

17 lines
388 B
C#
Raw Normal View History

2014-03-10 13:38:53 -04:00

namespace MediaBrowser.Model.Configuration
{
public class DlnaOptions
{
public bool EnablePlayTo { get; set; }
2014-03-23 16:49:05 -04:00
public bool EnableDebugLogging { get; set; }
public int ClientDiscoveryIntervalSeconds { get; set; }
2014-03-15 21:41:27 -04:00
public DlnaOptions()
{
EnablePlayTo = true;
2014-03-23 18:21:49 -04:00
ClientDiscoveryIntervalSeconds = 60;
2014-03-15 21:41:27 -04:00
}
2014-03-10 13:38:53 -04:00
}
}