Refactored how system fonts were loaded (at least covered for local development) so that instead of going through the api, they are instead resolved by using assets/fonts/{fontName}/{fontFile}.

This commit is contained in:
Joseph Milazzo 2024-07-13 11:52:23 -05:00
parent 9fae799c63
commit 58800c0b4e
88 changed files with 177 additions and 97 deletions

View file

@ -8,6 +8,6 @@ public class EpubFontDto
public int Id { get; set; }
public string Name { get; set; }
public FontProvider Provider { get; set; }
public DateTime Created { get; set; }
public DateTime LastModified { get; set; }
public string FileName { get; set; }
}