Add Shop models

This commit is contained in:
2022-10-30 22:10:35 +08:00
parent d79b50527e
commit 086c4da557
14 changed files with 541 additions and 45 deletions

View File

@@ -0,0 +1,13 @@
using Newtonsoft.Json;
namespace GrasscutterTools.Game.Shop
{
public struct ItemParamData
{
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("count")]
public int Count { get; set; }
}
}