MediaStreamQuery.cs 687 B

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