using System.Collections.Generic; namespace Readarr.Api.V1.Author { public class AuthorEditorResource { public List AuthorIds { get; set; } public bool? Monitored { 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 enum ApplyTags { Add, Remove, Replace } }