jellyfin/MediaBrowser.Model/Configuration/DlnaOptions.cs
2014-03-24 08:47:39 -04:00

18 lines
468 B
C#

namespace MediaBrowser.Model.Configuration
{
public class DlnaOptions
{
public bool EnablePlayTo { get; set; }
public bool EnableServer { get; set; }
public bool EnableDebugLogging { get; set; }
public int ClientDiscoveryIntervalSeconds { get; set; }
public DlnaOptions()
{
EnablePlayTo = true;
EnableServer = true;
ClientDiscoveryIntervalSeconds = 60;
}
}
}