2013-12-02 21:46:22 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
|
|
|
{
|
2013-12-22 18:58:51 +00:00
|
|
|
|
public class StreamResponseInfo
|
2013-12-02 21:46:22 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the stream.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The stream.</value>
|
|
|
|
|
public Stream Stream { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the type of the MIME.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The type of the MIME.</value>
|
|
|
|
|
public string MimeType { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|