mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-12-17 10:41:35 +08:00
16 lines
300 B
C#
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; }
|
|
}
|
|
}
|