8 lines
153 B
C#
8 lines
153 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs;
|
|
|
|
public class DeleteChaptersDto
|
|
{
|
|
public IList<int> ChapterIds { get; set; } = default!;
|
|
}
|