1
0
mirror of synced 2024-12-20 02:15:56 +01:00
TaikoLocalServer/TaikoWebUI/Shared/Models/Shougous.cs

9 lines
204 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace TaikoWebUI.Shared.Models;
public class Shougous
{
2024-03-09 00:42:56 +01:00
[JsonPropertyName("items")]
public List<ShougouEntry> ShougouEntries { get; set; } = new();
}