#pragma warning disable CS1591
namespace MediaBrowser.Model.Services
{
    public interface IHttpRequest : IRequest
    {
        /// 
        /// Gets the HTTP Verb.
        /// 
        string HttpMethod { get; }
        /// 
        /// Gets the value of the Accept HTTP Request Header.
        /// 
        string Accept { get; }
    }
}