Merge pull request #2118 from chaosinnovator/master

Add StartIndex result to /Items API query
This commit is contained in:
Joshua M. Boniface
2019-12-11 23:42:02 -05:00
committed by GitHub
2 changed files with 12 additions and 2 deletions

View File

@@ -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>();