jellyfin/MediaBrowser.Model/Configuration/DlnaOptions.cs

24 lines
727 B
C#
Raw Normal View History

2014-03-10 10:38:53 -07:00

namespace MediaBrowser.Model.Configuration
{
public class DlnaOptions
{
public bool EnablePlayTo { get; set; }
2014-03-24 05:47:39 -07:00
public bool EnableServer { get; set; }
2014-03-23 13:49:05 -07:00
public bool EnableDebugLogging { get; set; }
2014-04-19 22:21:08 -07:00
public bool BlastAliveMessages { get; set; }
2014-03-23 13:49:05 -07:00
public int ClientDiscoveryIntervalSeconds { get; set; }
2014-04-19 22:21:08 -07:00
public int BlastAliveMessageIntervalSeconds { get; set; }
public string DefaultUserId { get; set; }
2014-03-15 18:41:27 -07:00
public DlnaOptions()
{
EnablePlayTo = true;
2014-03-24 05:47:39 -07:00
EnableServer = true;
2014-04-19 22:21:08 -07:00
BlastAliveMessages = true;
2014-03-23 15:21:49 -07:00
ClientDiscoveryIntervalSeconds = 60;
BlastAliveMessageIntervalSeconds = 30;
2014-03-15 18:41:27 -07:00
}
2014-03-10 10:38:53 -07:00
}
}