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