using System.Collections.Generic; using Lidarr.Api.V1.Tracks; using Lidarr.Http.REST; using NzbDrone.Core.DecisionEngine; using NzbDrone.Core.Qualities; namespace Lidarr.Api.V1.ManualImport { public class ManualImportUpdateResource : RestResource { public string Path { get; set; } public string Name { get; set; } public int? ArtistId { get; set; } public int? AlbumId { get; set; } public int? AlbumReleaseId { get; set; } public List Tracks { get; set; } public List TrackIds { get; set; } public QualityModel Quality { get; set; } public string ReleaseGroup { get; set; } public int IndexerFlags { get; set; } public string DownloadId { get; set; } public bool AdditionalFile { get; set; } public bool ReplaceExistingFiles { get; set; } public bool DisableReleaseSwitching { get; set; } public IEnumerable Rejections { get; set; } } }