2023-10-15 15:27:07 +01:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace TaikoWebUI.Shared.Models;
|
|
|
|
|
|
|
|
|
|
public class DonCosRewardEntry
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("cosType")]
|
2023-11-12 23:12:54 +00:00
|
|
|
|
public string CosType { get; set; } = null!;
|
2023-10-15 15:27:07 +01:00
|
|
|
|
|
|
|
|
|
[JsonPropertyName("uniqueId")]
|
2023-11-12 23:12:54 +00:00
|
|
|
|
public uint UniqueId { get; set; }
|
2023-10-15 15:27:07 +01:00
|
|
|
|
}
|