mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 22:08:27 +01:00
fix SA1513/SA1516
This commit is contained in:
@@ -9,8 +9,11 @@ namespace MediaBrowser.Model.Querying
|
||||
public class QueryFiltersLegacy
|
||||
{
|
||||
public string[] Genres { get; set; }
|
||||
|
||||
public string[] Tags { get; set; }
|
||||
|
||||
public string[] OfficialRatings { get; set; }
|
||||
|
||||
public int[] Years { get; set; }
|
||||
|
||||
public QueryFiltersLegacy()
|
||||
@@ -21,9 +24,11 @@ namespace MediaBrowser.Model.Querying
|
||||
Years = Array.Empty<int>();
|
||||
}
|
||||
}
|
||||
|
||||
public class QueryFilters
|
||||
{
|
||||
public NameGuidPair[] Genres { get; set; }
|
||||
|
||||
public string[] Tags { get; set; }
|
||||
|
||||
public QueryFilters()
|
||||
|
||||
Reference in New Issue
Block a user