Kavita/API/DTOs/MangaFileDto.cs
2021-02-07 12:02:47 -06:00

12 lines
243 B
C#

using API.Entities.Enums;
namespace API.DTOs
{
public class MangaFileDto
{
public string FilePath { get; set; }
public int NumberOfPages { get; set; }
public MangaFormat Format { get; set; }
}
}