mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-10-27 16:52:29 -04:00
8 lines
174 B
C#
8 lines
174 B
C#
namespace API.DTOs.ReadingLists;
|
|
|
|
public sealed record UpdateReadingListBySeriesDto
|
|
{
|
|
public int SeriesId { get; init; }
|
|
public int ReadingListId { get; init; }
|
|
}
|