mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
f36eee0dc2
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com> Signed-off-by: Robin Dadswell <robin@dadswell.email>
25 lines
636 B
C#
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
|
|
}
|
|
}
|