aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/ApiClient/HttpResponseEventArgs.cs
blob: 417db404fa8f261abc4923b0e88fc1ccf70f0cdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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; }
    }
}