You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
465 B
20 lines
465 B
using System.IO;
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
{
|
|
public class StreamResponseInfo
|
|
{
|
|
/// <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; }
|
|
}
|
|
}
|