diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-08 22:38:18 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-08 22:38:18 -0400 |
| commit | 48265fefa445d2b9e62c4f050fca3da783e6123f (patch) | |
| tree | 10b8aa1888207277b27eb0e71819597a6353acd3 /MediaBrowser.Model/ApiClient/HttpResponseEventArgs.cs | |
| parent | b70ecab40a4d83cab0c1bd9a42891640c5e006a7 (diff) | |
update nuget
Diffstat (limited to 'MediaBrowser.Model/ApiClient/HttpResponseEventArgs.cs')
| -rw-r--r-- | MediaBrowser.Model/ApiClient/HttpResponseEventArgs.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/MediaBrowser.Model/ApiClient/HttpResponseEventArgs.cs b/MediaBrowser.Model/ApiClient/HttpResponseEventArgs.cs new file mode 100644 index 000000000..417db404f --- /dev/null +++ b/MediaBrowser.Model/ApiClient/HttpResponseEventArgs.cs @@ -0,0 +1,22 @@ +using System; +using System.Net; + +namespace MediaBrowser.Model.ApiClient +{ + /// <summary> + /// Class HttpResponseEventArgs + /// </summary> + public class HttpResponseEventArgs : EventArgs + { + /// <summary> + /// Gets or sets the URL. + /// </summary> + /// <value>The URL.</value> + public string Url { get; set; } + /// <summary> + /// Gets or sets the status code. + /// </summary> + /// <value>The status code.</value> + public HttpStatusCode StatusCode { get; set; } + } +} |
