Updated projects, updated entities to use a string as the primary keys. migrations need doing

This commit is contained in:
tidusjar 2022-04-06 21:42:24 +01:00
commit b5a268510d
55 changed files with 248 additions and 87 deletions

View file

@ -5,7 +5,7 @@ namespace Ombi.Schedule.Jobs.Plex.Models
{
public class ProcessedContent
{
public IEnumerable<int> Content { get; set; }
public IEnumerable<string> Content { get; set; }
public IEnumerable<int> Episodes { get; set; }
public bool HasProcessedContent => Content?.Any() ?? false;