mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
9 lines
213 B
C#
9 lines
213 B
C#
namespace API.DTOs.ReadingLists;
|
|
|
|
public sealed record UpdateReadingListByVolumeDto
|
|
{
|
|
public int VolumeId { get; init; }
|
|
public int SeriesId { get; init; }
|
|
public int ReadingListId { get; init; }
|
|
}
|