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,15 @@
using System.Collections.Generic;
using Newtonsoft.Json;
namespace GrasscutterTools.Game.Shop
{
public class ShopTable
{
[JsonProperty("shopId")]
public int ShopType { get; set; }
[JsonProperty("items")]
public List<ShopInfo> Items { get; set; }
}
}