#nullable disable #pragma warning disable CS1591 using System; using System.Collections.Generic; using MediaBrowser.Model.Entities; namespace MediaBrowser.Model.Providers { public class RemoteSearchResult : IHasProviderIds { public RemoteSearchResult() { ProviderIds = new Dictionary(StringComparer.OrdinalIgnoreCase); Artists = Array.Empty(); } /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the provider ids. /// /// The provider ids. public Dictionary ProviderIds { get; set; } /// /// Gets or sets the year. /// /// The year. public int? ProductionYear { get; set; } public int? IndexNumber { get; set; } public int? IndexNumberEnd { get; set; } public int? ParentIndexNumber { get; set; } public DateTime? PremiereDate { get; set; } public string ImageUrl { get; set; } public string SearchProviderName { get; set; } public string Overview { get; set; } public RemoteSearchResult AlbumArtist { get; set; } public RemoteSearchResult[] Artists { get; set; } } }