af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
32 lines
844 B
C#
32 lines
844 B
C#
// <copyright file="QueryFiltersLegacy.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#nullable disable
|
|
#pragma warning disable CS1591
|
|
|
|
using global::System;
|
|
|
|
namespace MediaBrowser.Model.Querying;
|
|
public class QueryFiltersLegacy
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="QueryFiltersLegacy"/> class.
|
|
/// </summary>
|
|
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; }
|
|
}
|