1
0
mirror of synced 2025-02-05 06:05:38 +01:00
TaikoLocalServer/TaikoWebUI/Shared/Models/DonCosRewardEntry.cs

12 lines
271 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace TaikoWebUI.Shared.Models;
public class DonCosRewardEntry
{
2024-03-08 18:42:56 -05:00
[JsonPropertyName("cosType")]
public string CosType { get; set; } = null!;
2024-03-08 18:42:56 -05:00
[JsonPropertyName("uniqueId")]
public uint UniqueId { get; set; }
}