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