1
0
mirror of synced 2025-02-05 06:05:38 +01:00

9 lines
213 B
C#

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