mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-27 22:56:45 -04:00
11 lines
222 B
C#
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; }
|
|
}
|
|
}
|