2021-05-06 15:39:20 -07:00
|
|
|
#nullable disable
|
|
|
|
|
2021-07-23 09:16:48 -07:00
|
|
|
#pragma warning disable CA2227, CS1591
|
2020-08-22 12:56:24 -07:00
|
|
|
|
2019-01-13 13:01:16 -07:00
|
|
|
using System;
|
2018-12-27 16:27:57 -07:00
|
|
|
using System.Collections.Generic;
|
2019-01-13 12:25:32 -07:00
|
|
|
using MediaBrowser.Model.Entities;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
{
|
|
|
|
public class ItemLookupInfo : IHasProviderIds
|
|
|
|
{
|
2021-05-11 04:55:46 -07:00
|
|
|
public ItemLookupInfo()
|
|
|
|
{
|
|
|
|
IsAutomated = true;
|
|
|
|
ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
|
|
}
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the name.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name.</value>
|
|
|
|
public string Name { get; set; }
|
2020-03-09 07:05:03 -07:00
|
|
|
|
2021-05-27 03:36:56 -07:00
|
|
|
/// <summary>
|
2021-07-10 09:05:41 -07:00
|
|
|
/// Gets or sets the original title.
|
2021-05-27 03:36:56 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The original title of the item.</value>
|
|
|
|
public string OriginalTitle { get; set; }
|
|
|
|
|
2020-09-02 11:11:31 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the path.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The path.</value>
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the metadata language.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The metadata language.</value>
|
|
|
|
public string MetadataLanguage { get; set; }
|
2020-03-09 07:05:03 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the metadata country code.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The metadata country code.</value>
|
|
|
|
public string MetadataCountryCode { get; set; }
|
2020-03-09 07:05:03 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the provider ids.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The provider ids.</value>
|
|
|
|
public Dictionary<string, string> ProviderIds { get; set; }
|
2020-03-09 07:05:03 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the year.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The year.</value>
|
|
|
|
public int? Year { get; set; }
|
2020-03-09 07:05:03 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public int? IndexNumber { get; set; }
|
2020-03-09 07:05:03 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public int? ParentIndexNumber { get; set; }
|
2020-03-09 07:05:03 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public DateTime? PremiereDate { get; set; }
|
2020-03-09 07:05:03 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public bool IsAutomated { get; set; }
|
|
|
|
}
|
|
|
|
}
|