jellyfin/MediaBrowser.Model/Configuration/DlnaOptions.cs

25 lines
776 B
C#
Raw Normal View History

2014-03-10 18:38:53 +01:00

namespace MediaBrowser.Model.Configuration
{
public class DlnaOptions
{
public bool EnablePlayTo { get; set; }
2014-03-24 13:47:39 +01:00
public bool EnableServer { get; set; }
2016-02-12 05:33:14 +01:00
public bool EnableDebugLog { get; set; }
2014-04-20 07:21:08 +02:00
public bool BlastAliveMessages { get; set; }
2014-03-23 21:49:05 +01:00
public int ClientDiscoveryIntervalSeconds { get; set; }
2014-04-20 07:21:08 +02:00
public int BlastAliveMessageIntervalSeconds { get; set; }
public string DefaultUserId { get; set; }
public bool EnableMovieFolders { get; set; }
2014-03-16 02:41:27 +01:00
public DlnaOptions()
{
EnablePlayTo = true;
2014-03-24 13:47:39 +01:00
EnableServer = true;
2014-04-20 07:21:08 +02:00
BlastAliveMessages = true;
2014-03-23 23:21:49 +01:00
ClientDiscoveryIntervalSeconds = 60;
BlastAliveMessageIntervalSeconds = 30;
2014-03-16 02:41:27 +01:00
}
2014-03-10 18:38:53 +01:00
}
}