1
0
mirror of synced 2025-03-02 16:23:39 +01:00
2024-03-08 18:42:56 -05:00

9 lines
198 B
C#

using System.Text.Json.Serialization;
namespace TaikoWebUI.Shared.Models;
public class Neiros
{
[JsonPropertyName("items")]
public List<NeiroEntry> NeiroEntries { get; set; } = new();
}