Kavita/API/DTOs/Font/EpubFontDto.cs
Joe Milazzo d04b8a09a1
Epub Font Manager (#4037)
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
2025-09-21 09:35:28 -07:00

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; }
}