2023-10-15 16:27:07 +02:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace TaikoWebUI.Shared.Models;
|
|
|
|
|
|
|
|
|
|
public class ShougouEntry
|
|
|
|
|
{
|
2024-03-09 00:42:56 +01:00
|
|
|
|
[JsonPropertyName("uniqueId")]
|
|
|
|
|
public uint UniqueId { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("rarity")]
|
|
|
|
|
public uint Rarity { get; set; }
|
2023-10-15 16:27:07 +02:00
|
|
|
|
}
|