mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 04:04:19 -04:00
12 lines
238 B
C#
12 lines
238 B
C#
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class MangaFileDto
|
|
{
|
|
public string FilePath { get; init; }
|
|
public int Pages { get; init; }
|
|
public MangaFormat Format { get; init; }
|
|
|
|
}
|
|
} |