jellyfin/Emby.Dlna/Configuration/DlnaOptions.cs

34 lines
845 B
C#
Raw Normal View History

#pragma warning disable CS1591
2018-09-12 13:26:21 -04:00
namespace Emby.Dlna.Configuration
2014-03-10 13:38:53 -04:00
{
public class DlnaOptions
{
2014-03-15 21:41:27 -04:00
public DlnaOptions()
{
EnablePlayTo = true;
2014-03-24 08:47:39 -04:00
EnableServer = true;
2014-04-20 01:21:08 -04:00
BlastAliveMessages = true;
SendOnlyMatchedHost = true;
2014-03-23 18:21:49 -04:00
ClientDiscoveryIntervalSeconds = 60;
2018-09-12 13:26:21 -04:00
BlastAliveMessageIntervalSeconds = 1800;
2014-03-15 21:41:27 -04:00
}
public bool EnablePlayTo { get; set; }
public bool EnableServer { get; set; }
public bool EnableDebugLog { get; set; }
public bool BlastAliveMessages { get; set; }
public bool SendOnlyMatchedHost { get; set; }
public int ClientDiscoveryIntervalSeconds { get; set; }
public int BlastAliveMessageIntervalSeconds { get; set; }
public string DefaultUserId { get; set; }
2014-03-10 13:38:53 -04:00
}
}