aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Querying/QueryFiltersLegacy.cs
blob: fcb450ed30cbde48d0cfafc85a380c9a437f01b4 (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
26
#nullable disable
#pragma warning disable CS1591

using System;

namespace MediaBrowser.Model.Querying
{
    public class QueryFiltersLegacy
    {
        public QueryFiltersLegacy()
        {
            Genres = Array.Empty<string>();
            Tags = Array.Empty<string>();
            OfficialRatings = Array.Empty<string>();
            Years = Array.Empty<int>();
        }

        public string[] Genres { get; set; }

        public string[] Tags { get; set; }

        public string[] OfficialRatings { get; set; }

        public int[] Years { get; set; }
    }
}