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