StreamResponseInfo.cs 507 B

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