You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.3 KiB
43 lines
1.3 KiB
using MediaBrowser.Model.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
public class ItemLookupInfo : IHasProviderIds
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the name.
|
|
/// </summary>
|
|
/// <value>The name.</value>
|
|
public string Name { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the metadata language.
|
|
/// </summary>
|
|
/// <value>The metadata language.</value>
|
|
public string MetadataLanguage { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the metadata country code.
|
|
/// </summary>
|
|
/// <value>The metadata country code.</value>
|
|
public string MetadataCountryCode { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the provider ids.
|
|
/// </summary>
|
|
/// <value>The provider ids.</value>
|
|
public Dictionary<string, string> ProviderIds { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the year.
|
|
/// </summary>
|
|
/// <value>The year.</value>
|
|
public int? Year { get; set; }
|
|
public int? IndexNumber { get; set; }
|
|
public int? ParentIndexNumber { get; set; }
|
|
|
|
public ItemLookupInfo()
|
|
{
|
|
ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
}
|
|
}
|
|
}
|