Files
Readarr/src/Readarr.Api.V1/Author/AuthorEditorResource.cs
T
2021-01-28 23:43:19 -05:00

25 lines
636 B
C#

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