mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 21:54:47 -04:00
13 lines
278 B
C#
13 lines
278 B
C#
using API.Entities;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class MangaFileDto
|
|
{
|
|
public string FilePath { get; set; }
|
|
public int Chapter { get; set; }
|
|
public int NumberOfPages { get; set; }
|
|
public MangaFormat Format { get; set; }
|
|
|
|
}
|
|
} |