8 lines
215 B
C#
8 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; }
|
|
}
|