#1464 added the Plex episode cacher

#865
This commit is contained in:
Jamie.Rees 2017-08-23 16:00:13 +01:00
commit 0e6462bbd5
31 changed files with 410 additions and 33 deletions

View file

@ -0,0 +1,27 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace Ombi.Store.Entities
{
[Table("PlexEpisode")]
public class PlexEpisode : Entity
{
public int EpisodeNumber { get; set; }
public int SeasonNumber { get; set; }
public string Key { get; set; } // RatingKey
public string Title { get; set; }
/// <summary>
/// The Show key
/// </summary>
/// <value>
/// The parent key.
/// </value>
public string ParentKey { get; set; }
/// <summary>
/// The Series key
/// </summary>
/// <value>
/// The grandparent key.
/// </value>
public string GrandparentKey { get; set; }
}
}