| | | 1 | | #pragma warning disable CS1591 |
| | | 2 | | |
| | | 3 | | using System; |
| | | 4 | | using System.Collections.Generic; |
| | | 5 | | using MediaBrowser.Model.Entities; |
| | | 6 | | |
| | | 7 | | namespace MediaBrowser.Model.Providers |
| | | 8 | | { |
| | | 9 | | public class RemoteSearchResult : IHasProviderIds |
| | | 10 | | { |
| | | 11 | | public RemoteSearchResult() |
| | | 12 | | { |
| | 0 | 13 | | ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); |
| | 0 | 14 | | Artists = Array.Empty<RemoteSearchResult>(); |
| | 0 | 15 | | } |
| | | 16 | | |
| | | 17 | | /// <summary> |
| | | 18 | | /// Gets or sets the name. |
| | | 19 | | /// </summary> |
| | | 20 | | /// <value>The name.</value> |
| | | 21 | | public string? Name { get; set; } |
| | | 22 | | |
| | | 23 | | /// <summary> |
| | | 24 | | /// Gets or sets the provider ids. |
| | | 25 | | /// </summary> |
| | | 26 | | /// <value>The provider ids.</value> |
| | | 27 | | public Dictionary<string, string> ProviderIds { get; set; } |
| | | 28 | | |
| | | 29 | | /// <summary> |
| | | 30 | | /// Gets or sets the year. |
| | | 31 | | /// </summary> |
| | | 32 | | /// <value>The year.</value> |
| | | 33 | | public int? ProductionYear { get; set; } |
| | | 34 | | |
| | | 35 | | public int? IndexNumber { get; set; } |
| | | 36 | | |
| | | 37 | | public int? IndexNumberEnd { get; set; } |
| | | 38 | | |
| | | 39 | | public int? ParentIndexNumber { get; set; } |
| | | 40 | | |
| | | 41 | | public DateTime? PremiereDate { get; set; } |
| | | 42 | | |
| | | 43 | | public string? ImageUrl { get; set; } |
| | | 44 | | |
| | | 45 | | public string? SearchProviderName { get; set; } |
| | | 46 | | |
| | | 47 | | public string? Overview { get; set; } |
| | | 48 | | |
| | | 49 | | public RemoteSearchResult? AlbumArtist { get; set; } |
| | | 50 | | |
| | | 51 | | public RemoteSearchResult[] Artists { get; set; } |
| | | 52 | | } |
| | | 53 | | } |