mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-13 19:20:23 +01:00
added new cabac value
This commit is contained in:
@@ -5,26 +5,7 @@ namespace MediaBrowser.Model.Querying
|
||||
/// <summary>
|
||||
/// Represents the result of a query for items
|
||||
/// </summary>
|
||||
public class ItemsResult
|
||||
public class ItemsResult : QueryResult<BaseItemDto>
|
||||
{
|
||||
/// <summary>
|
||||
/// The set of items returned based on sorting, paging, etc
|
||||
/// </summary>
|
||||
/// <value>The items.</value>
|
||||
public BaseItemDto[] Items { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The total number of records available
|
||||
/// </summary>
|
||||
/// <value>The total record count.</value>
|
||||
public int TotalRecordCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="ItemsResult"/> class.
|
||||
/// </summary>
|
||||
public ItemsResult()
|
||||
{
|
||||
Items = new BaseItemDto[] { };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user