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; } /// /// Initializes a new instance of the class. /// public QueryResult() { Items = new T[] { }; } } }