2
0

MediaAttachmentQuery.cs 455 B

12345678910111213141516171819
  1. using System;
  2. namespace MediaBrowser.Controller.Persistence
  3. {
  4. public class MediaAttachmentQuery
  5. {
  6. /// <summary>
  7. /// Gets or sets the index.
  8. /// </summary>
  9. /// <value>The index.</value>
  10. public int? Index { get; set; }
  11. /// <summary>
  12. /// Gets or sets the item identifier.
  13. /// </summary>
  14. /// <value>The item identifier.</value>
  15. public Guid ItemId { get; set; }
  16. }
  17. }