mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
27 lines
648 B
C#
27 lines
648 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.MediaFiles.EpisodeImport
|
|
{
|
|
public class ImportDecision
|
|
{
|
|
public LocalEpisode LocalEpisode { get; private set; }
|
|
public IEnumerable<string> Rejections { get; private set; }
|
|
|
|
public bool Approved
|
|
{
|
|
get
|
|
{
|
|
return !Rejections.Any();
|
|
}
|
|
}
|
|
|
|
public ImportDecision(LocalEpisode localEpisode, params string[] rejections)
|
|
{
|
|
LocalEpisode = localEpisode;
|
|
Rejections = rejections.ToList();
|
|
}
|
|
}
|
|
}
|