mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
12 lines
232 B
C#
12 lines
232 B
C#
using MediaBrowser.Model.Dto;
|
|
|
|
namespace MediaBrowser.Model.Querying
|
|
{
|
|
/// <summary>
|
|
/// Represents the result of a query for items
|
|
/// </summary>
|
|
public class ItemsResult : QueryResult<BaseItemDto>
|
|
{
|
|
}
|
|
}
|