using System; using System.Collections.Generic; using System.Linq; using NzbDrone.Common; namespace NzbDrone.Core.MediaFiles.EpisodeImport { public class ImportResult { public ImportDecision ImportDecision { get; private set; } public List Errors { get; private set; } public ImportResultType Result { get { //Approved and imported if (Errors.Empty()) return ImportResultType.Imported; //Decision was approved, but it was not imported if (ImportDecision.Approved) return ImportResultType.Skipped; //Decision was rejected return ImportResultType.Rejected; } } public ImportResult(ImportDecision importDecision, params String[] errors) { ImportDecision = importDecision; Errors = errors.ToList(); } } }