using System;
using System.Collections.Generic;
using System.Net;
namespace MediaBrowser.Model.ApiClient
{
    /// 
    /// Class HttpResponseEventArgs
    /// 
    public class HttpResponseEventArgs : EventArgs
    {
        /// 
        /// Gets or sets the URL.
        /// 
        /// The URL.
        public string Url { get; set; }
        /// 
        /// Gets or sets the status code.
        /// 
        /// The status code.
        public HttpStatusCode StatusCode { get; set; }
        /// 
        /// Gets or sets the headers.
        /// 
        /// The headers.
        public Dictionary Headers { get; set; }
        public HttpResponseEventArgs()
        {
            Headers = new Dictionary();
        }
    }
}