diff options
| author | Bond_009 <bond.009@outlook.com> | 2019-12-20 19:43:57 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2019-12-20 19:43:57 +0100 |
| commit | 7f5a174dff98c6071fc292a41bba63d1435c2ddd (patch) | |
| tree | 8831a98e9e938420b5a4198f621a3dd57847b6b1 /MediaBrowser.Model/Querying/QueryResult.cs | |
| parent | 137db45fc7a91d75d81023709b77277f34958ff0 (diff) | |
| parent | 06dfa2e687304874d4c8de8f7c95354b3d51225c (diff) | |
Merge branch 'master' into warn12
Diffstat (limited to 'MediaBrowser.Model/Querying/QueryResult.cs')
| -rw-r--r-- | MediaBrowser.Model/Querying/QueryResult.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Querying/QueryResult.cs b/MediaBrowser.Model/Querying/QueryResult.cs index c007a45d6..221645afb 100644 --- a/MediaBrowser.Model/Querying/QueryResult.cs +++ b/MediaBrowser.Model/Querying/QueryResult.cs @@ -17,6 +17,12 @@ namespace MediaBrowser.Model.Querying /// <value>The total record count.</value> public int TotalRecordCount { get; set; } + /// <summary> + /// The index of the first record in Items. + /// </summary> + /// <value>First record index.</value> + public int StartIndex { get; set; } + public QueryResult() { Items = Array.Empty<T>(); |
