mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
16 lines
408 B
C#
16 lines
408 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<ChapterDto> Chapters { get; set; }
|
|
}
|
|
} |