2
0

MediaAttachmentQuery.cs 487 B

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