ModernUO/Projects/UOContent/Gumps/Go/GoLocation.cs
2020-08-27 18:30:38 -07:00

13 lines
300 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; }
}
}