Files
Readarr/src/Readarr.Api.V1/Author/AuthorEditorDeleteResource.cs
T

11 lines
222 B
C#

using System.Collections.Generic;
namespace Readarr.Api.V1.Author
{
public class AuthorEditorDeleteResource
{
public List<int> AuthorIds { get; set; }
public bool DeleteFiles { get; set; }
}
}