using MediaBrowser.Model.Querying; namespace MediaBrowser.Model.Playlists { public class PlaylistItemQuery { /// /// Gets or sets the identifier. /// /// The identifier. public string Id { get; set; } /// /// Gets or sets the user identifier. /// /// The user identifier. public string UserId { get; set; } /// /// Gets or sets the start index. /// /// The start index. public int? StartIndex { get; set; } /// /// Gets or sets the limit. /// /// The limit. public int? Limit { get; set; } /// /// Gets or sets the fields. /// /// The fields. public ItemFields[] Fields { get; set; } } }