aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Querying/EpisodeQuery.cs
blob: e2fc3220a13a7c96d4fedd43156d0d62b5ee4a80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
namespace MediaBrowser.Model.Querying
{
    public class EpisodeQuery
    {
        public string UserId { get; set; }

        public string SeasonId { get; set; }
        
        public string SeriesId { get; set; }

        public bool? IsMissing { get; set; }

        public bool? IsVirtualUnaired { get; set; }

        public int? SeasonNumber { get; set; }

        public ItemFields[] Fields { get; set; }

        public EpisodeQuery()
        {
            Fields = new ItemFields[] { };
        }
    }
}