From f0594dea772a06e16bf1d5938836b4b3ec906424 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 27 Feb 2015 12:43:06 -0500 Subject: stub out process throttle --- MediaBrowser.Model/ApiClient/ConnectionOptions.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'MediaBrowser.Model/ApiClient') diff --git a/MediaBrowser.Model/ApiClient/ConnectionOptions.cs b/MediaBrowser.Model/ApiClient/ConnectionOptions.cs index 445eaa04e..e12676311 100644 --- a/MediaBrowser.Model/ApiClient/ConnectionOptions.cs +++ b/MediaBrowser.Model/ApiClient/ConnectionOptions.cs @@ -13,11 +13,17 @@ namespace MediaBrowser.Model.ApiClient /// /// 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