9 lines
180 B
C#
9 lines
180 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace TaikoWebUI.Shared.Models;
|
|
|
|
public class NeiroEntry
|
|
{
|
|
[JsonPropertyName("uniqueId")]
|
|
public uint UniqueId { get; set; }
|
|
} |