jellyfin/Emby.Dlna/Configuration/DlnaOptions.cs

34 lines
845 B
C#
Raw Normal View History

#pragma warning disable CS1591
2018-09-12 19:26:21 +02:00
namespace Emby.Dlna.Configuration
2014-03-10 18:38:53 +01:00
{
public class DlnaOptions
{
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;
SendOnlyMatchedHost = true;
2014-03-23 23:21:49 +01:00
ClientDiscoveryIntervalSeconds = 60;
2018-09-12 19:26:21 +02:00
BlastAliveMessageIntervalSeconds = 1800;
2014-03-16 02:41:27 +01: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 18:38:53 +01:00
}
}