12 lines
No EOL
237 B
C#
12 lines
No EOL
237 B
C#
using API.Entities;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class MangaFileDto
|
|
{
|
|
public string FilePath { get; set; }
|
|
public int NumberOfPages { get; set; }
|
|
public MangaFormat Format { get; set; }
|
|
|
|
}
|
|
} |