mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-12-18 10:52:38 +08:00
14 lines
249 B
C#
14 lines
249 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace GrasscutterTools.Game.Shop
|
|
{
|
|
public struct ItemParamData
|
|
{
|
|
[JsonProperty("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonProperty("count")]
|
|
public int Count { get; set; }
|
|
}
|
|
}
|