aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Querying/ItemsResult.cs
blob: 3b9c59733c5d12119be1cff8f0d265a2f6930aed (plain)
1
2
3
4
5
6
7
8
9
10
11
using MediaBrowser.Model.Dto;

namespace MediaBrowser.Model.Querying
{
    /// <summary>
    /// Represents the result of a query for items
    /// </summary>
    public class ItemsResult : QueryResult<BaseItemDto>
    {
    }
}