mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-08 23:19:14 +08:00
11 lines
194 B
C#
11 lines
194 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace GrasscutterTools.Game.Props
|
|
{
|
|
internal class ItemUseData
|
|
{
|
|
[JsonProperty("useParam")]
|
|
public string[] UseParam { get; set; }
|
|
}
|
|
}
|