using System.Collections.Generic; namespace API.DTOs.ReadingLists; public class UpdateReadingListByMultipleDto { public int SeriesId { get; init; } public int ReadingListId { get; init; } public IReadOnlyList VolumeIds { get; init; } = default!; public IReadOnlyList ChapterIds { get; init; } = default!; }