mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
15 lines
335 B
C#
15 lines
335 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Bloxstrap.Models
|
|
{
|
|
public class FontFamily
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; } = null!;
|
|
|
|
[JsonPropertyName("faces")]
|
|
public IEnumerable<FontFace> Faces { get; set; } = null!;
|
|
}
|
|
}
|