2014-01-29 05:17:58 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
|
{
|
|
|
|
|
public class ItemId : 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; }
|
2014-01-30 21:23:54 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the year.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The year.</value>
|
|
|
|
|
public int? Year { get; set; }
|
2014-02-04 20:19:29 +00:00
|
|
|
|
public int? IndexNumber { get; set; }
|
|
|
|
|
public int? ParentIndexNumber { get; set; }
|
2014-01-29 05:17:58 +00:00
|
|
|
|
|
|
|
|
|
public ItemId()
|
|
|
|
|
{
|
|
|
|
|
ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-01-31 19:55:21 +00:00
|
|
|
|
|
|
|
|
|
public class AlbumId : ItemId
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the album artist.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The album artist.</value>
|
|
|
|
|
public string AlbumArtist { get; set; }
|
2014-02-04 20:19:29 +00:00
|
|
|
|
|
2014-01-31 19:55:21 +00:00
|
|
|
|
/// <summary>
|
2014-02-04 20:19:29 +00:00
|
|
|
|
/// Gets or sets the artist provider ids.
|
2014-01-31 19:55:21 +00:00
|
|
|
|
/// </summary>
|
2014-02-04 20:19:29 +00:00
|
|
|
|
/// <value>The artist provider ids.</value>
|
|
|
|
|
public Dictionary<string, string> ArtistProviderIds { get; set; }
|
|
|
|
|
|
|
|
|
|
public AlbumId()
|
|
|
|
|
{
|
|
|
|
|
ArtistProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
|
|
|
}
|
2014-01-31 19:55:21 +00:00
|
|
|
|
}
|
2014-02-02 13:36:31 +00:00
|
|
|
|
|
|
|
|
|
public class GameId : ItemId
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the game system.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The game system.</value>
|
|
|
|
|
public string GameSystem { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class GameSystemId : ItemId
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The path.</value>
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
}
|
2014-02-04 20:19:29 +00:00
|
|
|
|
|
|
|
|
|
public class EpisodeId : ItemId
|
|
|
|
|
{
|
|
|
|
|
public Dictionary<string, string> SeriesProviderIds { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? IndexNumberEnd { get; set; }
|
|
|
|
|
|
|
|
|
|
public EpisodeId()
|
|
|
|
|
{
|
|
|
|
|
SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-01-29 05:17:58 +00:00
|
|
|
|
}
|