mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-08 23:19:14 +08:00
15 lines
373 B
C#
15 lines
373 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace GrasscutterTools.Game.Data.Excels
|
|
{
|
|
[ResourceType("HomeWorldBgmExcelConfigData.json")]
|
|
internal class HomeWorldBgmData : GameResource
|
|
{
|
|
[JsonProperty("homeBgmId")]
|
|
public override int Id { get; set; }
|
|
|
|
[JsonProperty("bgmNameTextMapHash")]
|
|
public long BgmNameTextMapHash { get; set; }
|
|
}
|
|
}
|