mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-19 12:44:19 +01:00
sync updates
This commit is contained in:
23
MediaBrowser.Model/ApiClient/ConnectionOptions.cs
Normal file
23
MediaBrowser.Model/ApiClient/ConnectionOptions.cs
Normal file
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user