| | | 1 | | #nullable disable |
| | | 2 | | |
| | | 3 | | #pragma warning disable CA2227, CS1591 |
| | | 4 | | |
| | | 5 | | using System; |
| | | 6 | | using System.Collections.Generic; |
| | | 7 | | using MediaBrowser.Model.Entities; |
| | | 8 | | |
| | | 9 | | namespace MediaBrowser.Controller.Providers |
| | | 10 | | { |
| | | 11 | | public class ItemLookupInfo : IHasProviderIds |
| | | 12 | | { |
| | | 13 | | public ItemLookupInfo() |
| | | 14 | | { |
| | 55 | 15 | | IsAutomated = true; |
| | 55 | 16 | | ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); |
| | 55 | 17 | | } |
| | | 18 | | |
| | | 19 | | /// <summary> |
| | | 20 | | /// Gets or sets the name. |
| | | 21 | | /// </summary> |
| | | 22 | | /// <value>The name.</value> |
| | | 23 | | public string Name { get; set; } |
| | | 24 | | |
| | | 25 | | /// <summary> |
| | | 26 | | /// Gets or sets the original title. |
| | | 27 | | /// </summary> |
| | | 28 | | /// <value>The original title of the item.</value> |
| | | 29 | | public string OriginalTitle { get; set; } |
| | | 30 | | |
| | | 31 | | /// <summary> |
| | | 32 | | /// Gets or sets the path. |
| | | 33 | | /// </summary> |
| | | 34 | | /// <value>The path.</value> |
| | | 35 | | public string Path { get; set; } |
| | | 36 | | |
| | | 37 | | /// <summary> |
| | | 38 | | /// Gets or sets the metadata language. |
| | | 39 | | /// </summary> |
| | | 40 | | /// <value>The metadata language.</value> |
| | | 41 | | public string MetadataLanguage { get; set; } |
| | | 42 | | |
| | | 43 | | /// <summary> |
| | | 44 | | /// Gets or sets the metadata country code. |
| | | 45 | | /// </summary> |
| | | 46 | | /// <value>The metadata country code.</value> |
| | | 47 | | public string MetadataCountryCode { get; set; } |
| | | 48 | | |
| | | 49 | | /// <summary> |
| | | 50 | | /// Gets or sets the provider ids. |
| | | 51 | | /// </summary> |
| | | 52 | | /// <value>The provider ids.</value> |
| | | 53 | | public Dictionary<string, string> ProviderIds { get; set; } |
| | | 54 | | |
| | | 55 | | /// <summary> |
| | | 56 | | /// Gets or sets the year. |
| | | 57 | | /// </summary> |
| | | 58 | | /// <value>The year.</value> |
| | | 59 | | public int? Year { get; set; } |
| | | 60 | | |
| | | 61 | | public int? IndexNumber { get; set; } |
| | | 62 | | |
| | | 63 | | public int? ParentIndexNumber { get; set; } |
| | | 64 | | |
| | | 65 | | public DateTime? PremiereDate { get; set; } |
| | | 66 | | |
| | | 67 | | public bool IsAutomated { get; set; } |
| | | 68 | | } |
| | | 69 | | } |