2020-01-22 13:00:07 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
#pragma warning disable SA1600
|
2019-01-13 12:54:44 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
namespace Emby.Dlna.Configuration
|
2014-03-10 10:38:53 -07:00
|
|
|
{
|
|
|
|
public class DlnaOptions
|
|
|
|
{
|
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;
|
2019-02-21 21:06:49 -07:00
|
|
|
SendOnlyMatchedHost = true;
|
2014-03-23 15:21:49 -07:00
|
|
|
ClientDiscoveryIntervalSeconds = 60;
|
2018-09-12 10:26:21 -07:00
|
|
|
BlastAliveMessageIntervalSeconds = 1800;
|
2014-03-15 18:41:27 -07:00
|
|
|
}
|
2020-01-22 13:00:07 -07: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 10:38:53 -07:00
|
|
|
}
|
|
|
|
}
|