mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-07 22:59:14 +08:00
12 lines
258 B
C#
12 lines
258 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace GrasscutterTools.Game.Data.Excels
|
|
{
|
|
[ResourceType("DungeonExcelConfigData.json")]
|
|
internal class DungeonData : GameResource
|
|
{
|
|
[JsonProperty("sceneId")]
|
|
public int SceneId { get; set; }
|
|
}
|
|
}
|