mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 04:26:11 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
9 lines
225 B
C#
9 lines
225 B
C#
namespace Kavita.Models.DTOs.ReadingLists;
|
|
|
|
public sealed record UpdateReadingListByChapterDto
|
|
{
|
|
public int ChapterId { get; init; }
|
|
public int SeriesId { get; init; }
|
|
public int ReadingListId { get; init; }
|
|
}
|