using MediaBrowser.Model.Dto; namespace MediaBrowser.Model.Querying { /// /// Represents the result of a query for items /// public class ItemsResult { /// /// The set of items returned based on sorting, paging, etc /// /// The items. public BaseItemDto[] Items { get; set; } /// /// The total number of records available /// /// The total record count. public int TotalRecordCount { get; set; } /// /// Initializes a new instance of the class. /// public ItemsResult() { Items = new BaseItemDto[] { }; } } }