mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-12-05 04:35:06 -05: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; }
|
|
|
|
}
|
|
} |