From b7867214ef317bbf6502e53701a990ec5f13b645 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 11 Aug 2017 17:55:48 -0400 Subject: update download error handling --- MediaBrowser.Model/ApiClient/ConnectionOptions.cs | 29 ----------------------- 1 file changed, 29 deletions(-) delete mode 100644 MediaBrowser.Model/ApiClient/ConnectionOptions.cs (limited to 'MediaBrowser.Model/ApiClient/ConnectionOptions.cs') diff --git a/MediaBrowser.Model/ApiClient/ConnectionOptions.cs b/MediaBrowser.Model/ApiClient/ConnectionOptions.cs deleted file mode 100644 index e12676311..000000000 --- a/MediaBrowser.Model/ApiClient/ConnectionOptions.cs +++ /dev/null @@ -1,29 +0,0 @@ - -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; - } - } -} -- cgit v1.2.3