1
0
mirror of synced 2024-11-27 16:10:53 +01:00
TaikoLocalServer/SharedProject/Models/ShopFolderData.cs
2023-09-11 23:07:13 +08:00

10 lines
237 B
C#

using System.Text.Json.Serialization;
namespace SharedProject.Models;
public class ShopFolderData
{
[JsonPropertyName("songNo")] public uint SongNo { get; set; }
[JsonPropertyName("price")] public uint Price { get; set; }
}