You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
|
|
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; }
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether [update date last accessed].
|
|
/// </summary>
|
|
/// <value><c>true</c> if [update date last accessed]; otherwise, <c>false</c>.</value>
|
|
public bool UpdateDateLastAccessed { get; set; }
|
|
|
|
public ConnectionOptions()
|
|
{
|
|
EnableWebSocket = true;
|
|
ReportCapabilities = true;
|
|
UpdateDateLastAccessed = true;
|
|
}
|
|
}
|
|
}
|