2023-09-11 17:07:13 +02:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace SharedProject.Models;
|
|
|
|
|
|
|
|
|
|
public class ShopFolderData
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("songNo")] public uint SongNo { get; set; }
|
2024-11-06 18:46:27 +01:00
|
|
|
|
|
|
|
|
|
[JsonPropertyName("type")] public uint Type { get; set; }
|
|
|
|
|
|
2023-09-11 17:07:13 +02:00
|
|
|
|
[JsonPropertyName("price")] public uint Price { get; set; }
|
|
|
|
|
}
|