namespace MediaBrowser.Model.Querying { public class QueryResult { /// /// Gets or sets the items. /// /// The items. public T[] Items { get; set; } /// /// The total number of records available /// /// The total record count. public int TotalRecordCount { get; set; } public QueryResult() { Items = new T[] { }; } } }