diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-23 16:49:05 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-23 16:49:05 -0400 |
| commit | f226d94012cbe0ce0855efadc561ec4fb215fc94 (patch) | |
| tree | 082a70e0420ae41334b8862cf576070090a72f2e /MediaBrowser.Model/Configuration | |
| parent | 7438aa6dfa5569e639d769c03ccd522d66b5bdeb (diff) | |
add more dlna options
Diffstat (limited to 'MediaBrowser.Model/Configuration')
| -rw-r--r-- | MediaBrowser.Model/Configuration/DlnaOptions.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Configuration/DlnaOptions.cs b/MediaBrowser.Model/Configuration/DlnaOptions.cs index b2503ebc7..893e377fa 100644 --- a/MediaBrowser.Model/Configuration/DlnaOptions.cs +++ b/MediaBrowser.Model/Configuration/DlnaOptions.cs @@ -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; } } } |
