mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 07:20:32 -04:00
9 lines
215 B
C#
9 lines
215 B
C#
namespace API.DTOs.ReadingLists;
|
|
|
|
public sealed record UpdateReadingListByChapterDto
|
|
{
|
|
public int ChapterId { get; init; }
|
|
public int SeriesId { get; init; }
|
|
public int ReadingListId { get; init; }
|
|
}
|