ModernUO/Projects/UOContent/Gumps/Go/GoLocation.cs
2024-06-08 19:59:31 -07:00

12 lines
No EOL
273 B
C#

using System.Text.Json.Serialization;
namespace Server.Gumps;
public class GoLocation
{
public GoCategory Parent { get; set; }
[JsonPropertyName("name")] public string Name { get; set; }
[JsonPropertyName("location")] public Point3D Location { get; set; }
}