mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-01-22 03:37:08 -05:00
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com> Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
13 lines
253 B
C#
13 lines
253 B
C#
using API.Entities.Enums.Font;
|
|
|
|
namespace API.DTOs.Font;
|
|
|
|
public sealed record EpubFontDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public FontProvider Provider { get; set; }
|
|
public string FileName { get; set; }
|
|
|
|
}
|