using MediaBrowser.Controller.Drawing; using System.IO; namespace MediaBrowser.Controller.LiveTv { public class StreamResponseInfo { /// /// Gets or sets the stream. /// /// The stream. public Stream Stream { get; set; } /// /// Gets or sets the type of the MIME. /// /// The type of the MIME. public ImageFormat Format { get; set; } } }