Kavita/API/DTOs/DeleteChaptersDto.cs
2024-11-20 05:17:36 -08:00

8 lines
153 B
C#

using System.Collections.Generic;
namespace API.DTOs;
public class DeleteChaptersDto
{
public IList<int> ChapterIds { get; set; } = default!;
}