diff options
| author | 7illusions <z@7illusions.com> | 2014-03-24 07:56:48 +0100 |
|---|---|---|
| committer | 7illusions <z@7illusions.com> | 2014-03-24 07:56:48 +0100 |
| commit | b50cac02492b55db230889d44e79142c0605d835 (patch) | |
| tree | ba87ee5708350d7a52aa7c38c3145492836576db /MediaBrowser.Model/Configuration | |
| parent | f3e992b82be4b23e33e6130d1495f2b5203d0576 (diff) | |
| parent | 787f5e8382af65279dfc05e0b23ac9ec874c80ad (diff) | |
Merge pull request #1 from MediaBrowser/master
Sync
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..b6398239f 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 = 60; } } } |
