mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
13 lines
274 B
C#
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; }
|
|
}
|
|
} |