mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 04:04:19 -04:00
12 lines
243 B
C#
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; }
|
|
|
|
}
|
|
} |