Kavita/API/DTOs/MarkVolumeReadDto.cs

8 lines
158 B
C#

namespace API.DTOs
{
public class MarkVolumeReadDto
{
public int SeriesId { get; init; }
public int VolumeId { get; init; }
}
}