Files
2021-01-19 11:02:49 +02:00

13 lines
274 B
C#

using System.Text.Json.Serialization;
namespace RadzenBlazorDemos.Models.GitHub
{
public class Label
{
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("color")]
public string Color { get; set; }
}
}