mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-18 12:33:07 -05: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; }
|
|
}
|