mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-17 02:31:28 -07:00
18 lines
415 B
C#
18 lines
415 B
C#
namespace Bloxstrap.Models
|
|
{
|
|
public class FontFace
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; } = null!;
|
|
|
|
[JsonPropertyName("weight")]
|
|
public int Weight { get; set; }
|
|
|
|
[JsonPropertyName("style")]
|
|
public string Style { get; set; } = null!;
|
|
|
|
[JsonPropertyName("assetId")]
|
|
public string AssetId { get; set; } = null!;
|
|
}
|
|
}
|