using System.Collections.Generic; using NzbDrone.Core.DecisionEngine; using NzbDrone.Core.Languages; using NzbDrone.Core.Qualities; using Radarr.Api.V3.CustomFormats; using Radarr.Api.V3.Movies; using Radarr.Http.REST; namespace Radarr.Api.V3.ManualImport { public class ManualImportReprocessResource : RestResource { public string Path { get; set; } public int MovieId { get; set; } public MovieResource Movie { get; set; } public QualityModel Quality { get; set; } public List Languages { get; set; } public string ReleaseGroup { get; set; } public string DownloadId { get; set; } public List CustomFormats { get; set; } public int CustomFormatScore { get; set; } public int IndexerFlags { get; set; } public IEnumerable Rejections { get; set; } } }