mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-08 23:19:14 +08:00
20 lines
477 B
C#
20 lines
477 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace GrasscutterTools.Game.Data
|
|
{
|
|
internal abstract class GameResource
|
|
{
|
|
[JsonProperty("id")]
|
|
public virtual int Id { get; set; }
|
|
|
|
[JsonProperty("nameTextMapHash")]
|
|
public long NameTextMapHash { get; set; }
|
|
|
|
[JsonProperty("titleTextMapHash")]
|
|
public string TitleTextMapHash { get; set; }
|
|
|
|
[JsonProperty("descTextMapHash")]
|
|
public long DescTextMapHash { get; set; }
|
|
}
|
|
}
|