diff options
| author | tikuf <admin@nyalindee.com> | 2014-03-25 16:09:30 +1100 |
|---|---|---|
| committer | tikuf <admin@nyalindee.com> | 2014-03-25 16:09:30 +1100 |
| commit | 520b77a098a5f3755c098636821a7ff3742a055f (patch) | |
| tree | b347c31d1333520350422c3e3a08cea292fc8093 /MediaBrowser.Model/Configuration | |
| parent | 72bd678b9736ed0cdd8afea90e7e0c91c5b9b4c9 (diff) | |
| parent | a94a98dc6c1381c177a407139769e0cad566346b (diff) | |
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Model/Configuration')
| -rw-r--r-- | MediaBrowser.Model/Configuration/DlnaOptions.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Configuration/DlnaOptions.cs b/MediaBrowser.Model/Configuration/DlnaOptions.cs index b2503ebc7..00fdaa444 100644 --- a/MediaBrowser.Model/Configuration/DlnaOptions.cs +++ b/MediaBrowser.Model/Configuration/DlnaOptions.cs @@ -4,11 +4,15 @@ namespace MediaBrowser.Model.Configuration public class DlnaOptions { public bool EnablePlayTo { get; set; } - public bool EnablePlayToDebugLogging { 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; } } } |
