mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 20:24:27 -04:00
12 lines
280 B
C#
12 lines
280 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class VolumeDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Number { get; set; }
|
|
public string CoverImage { get; set; }
|
|
public ICollection<string> Files { get; set; }
|
|
}
|
|
} |