using System.Collections.Generic; using System.Linq; namespace Ombi.Schedule.Jobs.Plex.Models { public class ProcessedContent { public IEnumerable Content { get; set; } public IEnumerable Episodes { get; set; } public bool HasProcessedContent => Content.Any(); public bool HasProcessedEpisodes => Episodes.Any(); } }