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