mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-12 23:59:13 +08:00
12 lines
267 B
C#
12 lines
267 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace GrasscutterTools.Game.Data.Excels
|
|
{
|
|
[ResourceType("AvatarExcelConfigData.json")]
|
|
internal class AvatarData : GameResource
|
|
{
|
|
[JsonProperty("qualityType")]
|
|
public string QualityType { get; set; }
|
|
}
|
|
}
|