add more dlna options

This commit is contained in:
Luke Pulverenti
2014-03-23 16:49:05 -04:00
parent 7438aa6dfa
commit f226d94012
5 changed files with 11 additions and 8 deletions

View File

@@ -4,11 +4,13 @@ namespace MediaBrowser.Model.Configuration
public class DlnaOptions
{
public bool EnablePlayTo { get; set; }
public bool EnablePlayToDebugLogging { get; set; }
public bool EnableDebugLogging { get; set; }
public int ClientDiscoveryIntervalSeconds { get; set; }
public DlnaOptions()
{
EnablePlayTo = true;
ClientDiscoveryIntervalSeconds = 30;
}
}
}