using System.Collections.Generic; using NzbDrone.Core.Music; namespace Lidarr.Api.V1.Artist { public class ArtistEditorResource { public List ArtistIds { get; set; } public bool? Monitored { get; set; } public NewItemMonitorTypes? MonitorNewItems { get; set; } public int? QualityProfileId { get; set; } public int? MetadataProfileId { get; set; } public string RootFolderPath { get; set; } public List Tags { get; set; } public ApplyTags ApplyTags { get; set; } public bool MoveFiles { get; set; } public bool DeleteFiles { get; set; } public bool AddImportListExclusion { get; set; } } }