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() ?? false; public bool HasProcessedEpisodes => Episodes?.Any() ?? false; } }