mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 12:59:39 -07:00
Fixed build !wip
This commit is contained in:
parent
ca48361865
commit
a40af63a9c
1 changed files with 10 additions and 0 deletions
|
@ -44,6 +44,7 @@ namespace Ombi.Store.Entities
|
||||||
public string Url { get; set; }
|
public string Url { get; set; }
|
||||||
|
|
||||||
public ICollection<PlexEpisode> Episodes { get; set; }
|
public ICollection<PlexEpisode> Episodes { get; set; }
|
||||||
|
public ICollection<PlexSeasonsContent> Seasons { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Plex's internal ID for this item
|
/// Plex's internal ID for this item
|
||||||
|
@ -62,6 +63,15 @@ namespace Ombi.Store.Entities
|
||||||
public bool HasTheMovieDb => !string.IsNullOrEmpty(TheMovieDbId);
|
public bool HasTheMovieDb => !string.IsNullOrEmpty(TheMovieDbId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Table("PlexSeasonsContent")]
|
||||||
|
public class PlexSeasonsContent : Entity
|
||||||
|
{
|
||||||
|
public int PlexContentId { get; set; }
|
||||||
|
public int SeasonNumber { get; set; }
|
||||||
|
public int SeasonKey { get; set; }
|
||||||
|
public int ParentKey { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
public enum PlexMediaTypeEntity
|
public enum PlexMediaTypeEntity
|
||||||
{
|
{
|
||||||
Movie = 0,
|
Movie = 0,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue