1
0
mirror of synced 2024-12-18 17:35:55 +01:00
TaikoLocalServer/TaikoWebUI/Shared/Models/WordList.cs
2023-09-09 21:58:20 +09:00

9 lines
206 B
C#

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