jellyfin/MediaBrowser.Model/Configuration/DlnaOptions.cs
Luke Pulverenti 787f5e8382 updated nuget
2014-03-23 18:21:49 -04:00

17 lines
388 B
C#

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