using System.IO;
using System.Net;
namespace MediaBrowser.Common.Net
{
///
/// Class HttpResponseInfo
///
public class HttpResponseInfo
{
///
/// Gets or sets the type of the content.
///
/// The type of the content.
public string ContentType { get; set; }
///
/// Gets or sets the content.
///
/// The content.
public Stream Content { get; set; }
///
/// Gets or sets the status code.
///
/// The status code.
public HttpStatusCode StatusCode { get; set; }
///
/// Gets or sets the temp file path.
///
/// The temp file path.
public string TempFilePath { get; set; }
}
}