mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-01 20:54:12 -04:00
8 lines
152 B
C#
8 lines
152 B
C#
namespace API.DTOs.Reader;
|
|
|
|
public sealed record MarkVolumeReadDto
|
|
{
|
|
public int SeriesId { get; init; }
|
|
public int VolumeId { get; init; }
|
|
}
|