mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 17:45:09 +00:00
21 lines
458 B
C#
21 lines
458 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PckStudio.Core.Json
|
|
{
|
|
public class EntityInfo
|
|
{
|
|
[JsonProperty("displayName")]
|
|
public string DisplayName { get; set; }
|
|
|
|
[JsonProperty("internalName")]
|
|
public string InternalName { get; set; }
|
|
|
|
public EntityInfo(string displayName, string internalName)
|
|
{
|
|
DisplayName = displayName;
|
|
InternalName = internalName;
|
|
}
|
|
}
|
|
}
|