StreamResponseInfo.cs 465 B

12345678910111213141516171819
  1. using System.IO;
  2. namespace MediaBrowser.Controller.LiveTv
  3. {
  4. public class StreamResponseInfo
  5. {
  6. /// <summary>
  7. /// Gets or sets the stream.
  8. /// </summary>
  9. /// <value>The stream.</value>
  10. public Stream Stream { get; set; }
  11. /// <summary>
  12. /// Gets or sets the type of the MIME.
  13. /// </summary>
  14. /// <value>The type of the MIME.</value>
  15. public string MimeType { get; set; }
  16. }
  17. }