MediaStreamQuery.cs 655 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using MediaBrowser.Model.Entities;
  3. namespace MediaBrowser.Controller.Persistence
  4. {
  5. public class MediaStreamQuery
  6. {
  7. /// <summary>
  8. /// Gets or sets the type.
  9. /// </summary>
  10. /// <value>The type.</value>
  11. public MediaStreamType? Type { get; set; }
  12. /// <summary>
  13. /// Gets or sets the index.
  14. /// </summary>
  15. /// <value>The index.</value>
  16. public int? Index { get; set; }
  17. /// <summary>
  18. /// Gets or sets the item identifier.
  19. /// </summary>
  20. /// <value>The item identifier.</value>
  21. public Guid ItemId { get; set; }
  22. }
  23. }