aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Querying/QueryResult.cs
blob: ea843f34cd157feaa9d28abc44b85854a1f0da8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#nullable disable
#pragma warning disable CS1591

using System;
using System.Collections.Generic;

namespace MediaBrowser.Model.Querying
{
    public class QueryResult<T>
    {
        public QueryResult()
        {
            Items = Array.Empty<T>();
        }

        public QueryResult(IReadOnlyList<T> items)
        {
            Items = items;
            TotalRecordCount = items.Count;
        }

        public QueryResult(int? startIndex, int? totalRecordCount, IReadOnlyList<T> items)
        {
            StartIndex = startIndex ?? 0;
            TotalRecordCount = totalRecordCount ?? items.Count;
            Items = items;
        }

        /// <summary>
        /// Gets or sets the items.
        /// </summary>
        /// <value>The items.</value>
        public IReadOnlyList<T> Items { get; set; }

        /// <summary>
        /// Gets or sets the total number of records available.
        /// </summary>
        /// <value>The total record count.</value>
        public int TotalRecordCount { get; set; }

        /// <summary>
        /// Gets or sets the index of the first record in Items.
        /// </summary>
        /// <value>First record index.</value>
        public int StartIndex { get; set; }
    }
}