mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-06-05 14:25:17 -04:00
d04b8a09a1
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
14 lines
254 B
C#
14 lines
254 B
C#
namespace API.Entities.Enums.Font;
|
|
|
|
public enum FontProvider
|
|
{
|
|
/// <summary>
|
|
/// Font is provider by System, always avaible
|
|
/// </summary>
|
|
System = 1,
|
|
/// <summary>
|
|
/// Font provider by the User
|
|
/// </summary>
|
|
User = 2,
|
|
}
|