mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-07 22:59:14 +08:00
18 lines
402 B
C#
18 lines
402 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace GrasscutterTools.Game.Data.Excels
|
|
{
|
|
[ResourceType("QuestExcelConfigData.json")]
|
|
internal class QuestData : GameResource
|
|
{
|
|
[JsonProperty("subId")]
|
|
public override int Id { get; set; }
|
|
|
|
[JsonProperty("mainId")]
|
|
public int MainId { get; set; }
|
|
|
|
[JsonProperty("order")]
|
|
public int Order { get; set; }
|
|
}
|
|
}
|