mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-08 23:19:14 +08:00
23 lines
683 B
C#
23 lines
683 B
C#
using System.Collections.Generic;
|
|
using GrasscutterTools.Game.Inventory;
|
|
using GrasscutterTools.Game.Props;
|
|
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
namespace GrasscutterTools.Game.Data.Excels
|
|
{
|
|
[ResourceType("MaterialExcelConfigData.json")]
|
|
internal class MaterialData : GameResource
|
|
{
|
|
[JsonProperty("itemType"), JsonConverter(typeof(StringEnumConverter))]
|
|
public ItemType ItemType { get; set; }
|
|
|
|
[JsonProperty("materialType"), JsonConverter(typeof(StringEnumConverter))]
|
|
public MaterialType MaterialType { get; set; }
|
|
|
|
[JsonProperty("itemUse")]
|
|
public List<ItemUseData> ItemUse { get; set; }
|
|
}
|
|
}
|