aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/ApiClient/ConnectionOptions.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-12-16 00:01:57 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-12-16 00:01:57 -0500
commit3c48def0d76417572193cd306846f1516e0e9038 (patch)
tree8570bb756e024eaca9f2d5b8008e43279aa9fb23 /MediaBrowser.Model/ApiClient/ConnectionOptions.cs
parent7f7d2f85e324bc9e2c6b170c89af0541601e8cad (diff)
sync updates
Diffstat (limited to 'MediaBrowser.Model/ApiClient/ConnectionOptions.cs')
-rw-r--r--MediaBrowser.Model/ApiClient/ConnectionOptions.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/MediaBrowser.Model/ApiClient/ConnectionOptions.cs b/MediaBrowser.Model/ApiClient/ConnectionOptions.cs
new file mode 100644
index 000000000..445eaa04e
--- /dev/null
+++ b/MediaBrowser.Model/ApiClient/ConnectionOptions.cs
@@ -0,0 +1,23 @@
+
+namespace MediaBrowser.Model.ApiClient
+{
+ public class ConnectionOptions
+ {
+ /// <summary>
+ /// Gets or sets a value indicating whether [enable web socket].
+ /// </summary>
+ /// <value><c>true</c> if [enable web socket]; otherwise, <c>false</c>.</value>
+ public bool EnableWebSocket { get; set; }
+ /// <summary>
+ /// Gets or sets a value indicating whether [report capabilities].
+ /// </summary>
+ /// <value><c>true</c> if [report capabilities]; otherwise, <c>false</c>.</value>
+ public bool ReportCapabilities { get; set; }
+
+ public ConnectionOptions()
+ {
+ EnableWebSocket = true;
+ ReportCapabilities = true;
+ }
+ }
+}