mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-10-29 01:32:29 -04:00
12 lines
346 B
C#
12 lines
346 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.ReadingLists;
|
|
|
|
public sealed record UpdateReadingListByMultipleDto
|
|
{
|
|
public int SeriesId { get; init; }
|
|
public int ReadingListId { get; init; }
|
|
public IReadOnlyList<int> VolumeIds { get; init; } = default!;
|
|
public IReadOnlyList<int> ChapterIds { get; init; } = default!;
|
|
}
|