1
0
mirror of synced 2024-11-28 00:20:53 +01:00
TaikoLocalServer/SharedProject/Models/ShopFolderData.cs

11 lines
301 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace SharedProject.Models;
public class ShopFolderData
{
[JsonPropertyName("songNo")] public uint SongNo { get; set; }
2024-03-14 21:37:30 +01:00
public uint Type { get; set; }
[JsonPropertyName("price")] public uint Price { get; set; }
}