aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/HttpResponseInfo.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-07-20 17:36:59 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-07-20 17:36:59 -0400
commit7e5bdc837a95067b304872c3a757e39e434adaba (patch)
tree28fb79ea5d7ce449f003ee479104aa04f029b5f4 /MediaBrowser.Common/Net/HttpResponseInfo.cs
parentcf057c5b2736f1e25bb1a8f9091c3954311889ab (diff)
added GetTempFileResponse
Diffstat (limited to 'MediaBrowser.Common/Net/HttpResponseInfo.cs')
-rw-r--r--MediaBrowser.Common/Net/HttpResponseInfo.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/HttpResponseInfo.cs b/MediaBrowser.Common/Net/HttpResponseInfo.cs
index 558218ed16..3199dcc1c4 100644
--- a/MediaBrowser.Common/Net/HttpResponseInfo.cs
+++ b/MediaBrowser.Common/Net/HttpResponseInfo.cs
@@ -25,5 +25,11 @@ namespace MediaBrowser.Common.Net
/// </summary>
/// <value>The status code.</value>
public HttpStatusCode StatusCode { get; set; }
+
+ /// <summary>
+ /// Gets or sets the temp file path.
+ /// </summary>
+ /// <value>The temp file path.</value>
+ public string TempFilePath { get; set; }
}
}