13 lines
259 B
C#
13 lines
259 B
C#
using System;
|
|
using API.Entities.Enums.Font;
|
|
|
|
namespace API.DTOs.Font;
|
|
|
|
public class EpubFontDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public FontProvider Provider { get; set; }
|
|
public string FileName { get; set; }
|
|
|
|
}
|