17 lines
388 B
C#
17 lines
388 B
C#
|
|
namespace MediaBrowser.Model.Configuration
|
|
{
|
|
public class DlnaOptions
|
|
{
|
|
public bool EnablePlayTo { get; set; }
|
|
public bool EnableDebugLogging { get; set; }
|
|
public int ClientDiscoveryIntervalSeconds { get; set; }
|
|
|
|
public DlnaOptions()
|
|
{
|
|
EnablePlayTo = true;
|
|
ClientDiscoveryIntervalSeconds = 60;
|
|
}
|
|
}
|
|
}
|