mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 03:28:28 -07:00
14 lines
No EOL
398 B
C#
14 lines
No EOL
398 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Ombi.Schedule.Jobs.Plex.Models
|
|
{
|
|
public class ProcessedContent
|
|
{
|
|
public IEnumerable<string> Content { get; set; }
|
|
public IEnumerable<int> Episodes { get; set; }
|
|
|
|
public bool HasProcessedContent => Content?.Any() ?? false;
|
|
public bool HasProcessedEpisodes => Episodes?.Any() ?? false;
|
|
}
|
|
} |