1
0
mirror of synced 2025-02-04 21:55:30 +01:00

10 lines
237 B
C#
Raw Normal View History

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; }
}