aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/DlnaOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Configuration/DlnaOptions.cs')
-rw-r--r--MediaBrowser.Model/Configuration/DlnaOptions.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/DlnaOptions.cs b/MediaBrowser.Model/Configuration/DlnaOptions.cs
index 00fdaa444..3e017a90c 100644
--- a/MediaBrowser.Model/Configuration/DlnaOptions.cs
+++ b/MediaBrowser.Model/Configuration/DlnaOptions.cs
@@ -6,13 +6,18 @@ namespace MediaBrowser.Model.Configuration
public bool EnablePlayTo { get; set; }
public bool EnableServer { get; set; }
public bool EnableDebugLogging { get; set; }
+ public bool BlastAliveMessages { get; set; }
public int ClientDiscoveryIntervalSeconds { get; set; }
+ public int BlastAliveMessageIntervalSeconds { get; set; }
+ public string DefaultUserId { get; set; }
public DlnaOptions()
{
EnablePlayTo = true;
EnableServer = true;
+ BlastAliveMessages = true;
ClientDiscoveryIntervalSeconds = 60;
+ BlastAliveMessageIntervalSeconds = 60;
}
}
}