Dashboard/Quik/Typography/QuikFontStyle.cs

23 lines
471 B
C#
Raw Normal View History

2022-08-19 15:13:19 +02:00
namespace Quik.Typography
{
public class QuikFontStyle
{
public string Family { get; }
public QuikFontType Type { get; }
public float Size { get; }
public QuikFontStyle(string family, float size, QuikFontType type = QuikFontType.Normal)
{
Family = family;
Size = size;
Type = type;
}
}
public enum QuikFontType
{
Normal,
Italic,
Bold
}
}