namespace MediaBrowser.Model.ApiClient
{
    public class ConnectionOptions
    {
        /// 
        /// Gets or sets a value indicating whether [enable web socket].
        /// 
        /// true if [enable web socket]; otherwise, false.
        public bool EnableWebSocket { get; set; }
        /// 
        /// Gets or sets a value indicating whether [report capabilities].
        /// 
        /// true if [report capabilities]; otherwise, false.
        public bool ReportCapabilities { get; set; }
        /// 
        /// Gets or sets a value indicating whether [update date last accessed].
        /// 
        /// true if [update date last accessed]; otherwise, false.
        public bool UpdateDateLastAccessed { get; set; }
        public ConnectionOptions()
        {
            EnableWebSocket = true;
            ReportCapabilities = true;
            UpdateDateLastAccessed = true;
        }
    }
}