mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 07:20:32 -04:00
9 lines
161 B
C#
9 lines
161 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs;
|
|
|
|
public sealed record DeleteChaptersDto
|
|
{
|
|
public IList<int> ChapterIds { get; set; } = default!;
|
|
}
|