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; } public IReadOnlyList ChapterIds { get; init; } } }