21 lines
424 B
C#
21 lines
424 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Questionable.LgbWorker;
|
|
|
|
internal sealed class LevelEntry
|
|
{
|
|
[JsonPropertyName("objectId")]
|
|
public uint ObjectId { get; set; }
|
|
|
|
[JsonPropertyName("territoryId")]
|
|
public ushort TerritoryId { get; set; }
|
|
|
|
[JsonPropertyName("x")]
|
|
public float X { get; set; }
|
|
|
|
[JsonPropertyName("y")]
|
|
public float Y { get; set; }
|
|
|
|
[JsonPropertyName("z")]
|
|
public float Z { get; set; }
|
|
}
|