1
0
mirror of synced 2024-11-15 02:47:35 +01:00
TaikoLocalServer/SharedProject/Models/ShopFolderData.cs

12 lines
308 B
C#
Raw Permalink Normal View History

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