12 lines
271 B
C#
12 lines
271 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace TaikoWebUI.Shared.Models;
|
|
|
|
public class DonCosRewardEntry
|
|
{
|
|
[JsonPropertyName("cosType")]
|
|
public string CosType { get; set; } = null!;
|
|
|
|
[JsonPropertyName("uniqueId")]
|
|
public uint UniqueId { get; set; }
|
|
} |