mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-08 23:19:14 +08:00
12 lines
260 B
C#
12 lines
260 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace GrasscutterTools.Game.Data.Excels
|
|
{
|
|
[ResourceType("WeaponExcelConfigData.json")]
|
|
internal class WeaponData : GameResource
|
|
{
|
|
[JsonProperty("rankLevel")]
|
|
public int RankLevel { get; set; }
|
|
}
|
|
}
|