// // Copyright (c) PlaceholderCompany. All rights reserved. // #nullable disable #pragma warning disable CS1591 using global::System; namespace MediaBrowser.Model.Querying; public class QueryFiltersLegacy { /// /// Initializes a new instance of the class. /// public QueryFiltersLegacy() { Genres = Array.Empty(); Tags = Array.Empty(); OfficialRatings = Array.Empty(); Years = Array.Empty(); } public string[] Genres { get; set; } public string[] Tags { get; set; } public string[] OfficialRatings { get; set; } public int[] Years { get; set; } }