#nullable disable #pragma warning disable CA2227, CS1591 using System; using System.Collections.Generic; using MediaBrowser.Model.Entities; namespace MediaBrowser.Controller.Providers { public class ItemLookupInfo : IHasProviderIds { public ItemLookupInfo() { IsAutomated = true; ProviderIds = new Dictionary(StringComparer.OrdinalIgnoreCase); } /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the original title. /// /// The original title of the item. public string OriginalTitle { get; set; } /// /// Gets or sets the path. /// /// The path. public string Path { get; set; } /// /// Gets or sets the metadata language. /// /// The metadata language. public string MetadataLanguage { get; set; } /// /// Gets or sets the metadata country code. /// /// The metadata country code. public string MetadataCountryCode { 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? Year { get; set; } public int? IndexNumber { get; set; } public int? ParentIndexNumber { get; set; } public DateTime? PremiereDate { get; set; } public bool IsAutomated { get; set; } } }