stub out dlna server

This commit is contained in:
Luke Pulverenti
2014-03-24 08:47:39 -04:00
parent 1c3c12ebf6
commit 501dedb13c
9 changed files with 623 additions and 11 deletions

View File

@@ -4,12 +4,14 @@ namespace MediaBrowser.Model.Configuration
public class DlnaOptions
{
public bool EnablePlayTo { get; set; }
public bool EnableServer { get; set; }
public bool EnableDebugLogging { get; set; }
public int ClientDiscoveryIntervalSeconds { get; set; }
public DlnaOptions()
{
EnablePlayTo = true;
EnableServer = true;
ClientDiscoveryIntervalSeconds = 60;
}
}