14 lines
341 B
C#
14 lines
341 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; }
|
|
|
|
[JsonPropertyName("map")] public string MapName { get; set; }
|
|
}
|