Files
GrasscutterCommandGenerator/Source/GrasscutterTools/Game/Shop/ShopTable.cs
2022-10-30 22:10:35 +08:00

16 lines
300 B
C#

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