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