#pragma warning disable CS1591 using System; namespace MediaBrowser.Controller.Persistence { public class MediaAttachmentQuery { /// /// Gets or sets the index. /// /// The index. public int? Index { get; set; } /// /// Gets or sets the item identifier. /// /// The item identifier. public Guid ItemId { get; set; } } }