diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-28 16:25:58 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-28 16:25:58 -0400 |
| commit | 8a1b12b7d805ce35f4e10acf2294f355f47e75e3 (patch) | |
| tree | 71fc6b154b3b4e335fe9af1a58fdb584042dd92a /MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs | |
| parent | ac7d6256f460ce459a5b5c824e1b32d23e120901 (diff) | |
tightened up image saving to reduce knowledge of file names
Diffstat (limited to 'MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs')
| -rw-r--r-- | MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs b/MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs deleted file mode 100644 index 4a4612ffb..000000000 --- a/MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs +++ /dev/null @@ -1,46 +0,0 @@ -using System; - -namespace MediaBrowser.Common.Implementations.HttpClientManager -{ - /// <summary> - /// Class HttpResponseOutput - /// </summary> - public class HttpResponseInfo - { - /// <summary> - /// Gets or sets the URL. - /// </summary> - /// <value>The URL.</value> - public string Url { get; set; } - - /// <summary> - /// Gets or sets the etag. - /// </summary> - /// <value>The etag.</value> - public string Etag { get; set; } - - /// <summary> - /// Gets or sets the last modified. - /// </summary> - /// <value>The last modified.</value> - public DateTime? LastModified { get; set; } - - /// <summary> - /// Gets or sets the expires. - /// </summary> - /// <value>The expires.</value> - public DateTime? Expires { get; set; } - - /// <summary> - /// Gets or sets a value indicating whether [must revalidate]. - /// </summary> - /// <value><c>true</c> if [must revalidate]; otherwise, <c>false</c>.</value> - public bool MustRevalidate { get; set; } - - /// <summary> - /// Gets or sets the request date. - /// </summary> - /// <value>The request date.</value> - public DateTime RequestDate { get; set; } - } -} |
