ModernUO/Projects/UOContent/Gumps/Go/GoLocation.cs
2020-06-19 13:53:18 -07:00

15 lines
305 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; }
}
}