Kavita/API/DTOs/VolumeDto.cs

16 lines
No EOL
407 B
C#

using System.Collections.Generic;
namespace API.DTOs
{
public class VolumeDto
{
public int Id { get; set; }
public int Number { get; set; }
public string Name { get; set; }
public byte[] CoverImage { get; set; }
public int Pages { get; set; }
public int PagesRead { get; set; }
public ICollection<MangaFileDto> Files { get; set; }
}
}