Add StartIndex result to /Items API query

This commit is contained in:
chaosinnovator
2019-12-10 09:30:44 -08:00
parent 6f283d80dc
commit b98e25a07e
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>();