mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05: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; }
 | 
						|
 | 
						|
}
 |