mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-04-13 12:41:39 -04:00
14 lines
267 B
C#
14 lines
267 B
C#
using System;
|
|
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; }
|
|
|
|
}
|