2023-10-15 15:27:07 +01:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace TaikoWebUI.Shared.Models;
|
|
|
|
|
|
|
|
|
|
public class Neiros
|
|
|
|
|
{
|
2024-03-08 18:42:56 -05:00
|
|
|
|
[JsonPropertyName("items")]
|
|
|
|
|
public List<NeiroEntry> NeiroEntries { get; set; } = new();
|
2023-10-15 15:27:07 +01:00
|
|
|
|
}
|