using System.Collections.Generic; namespace API.DTOs; public sealed record DeleteChaptersDto { public IList ChapterIds { get; set; } = default!; }