forked from aly/qstbak
18 lines
412 B
C#
18 lines
412 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Questionable.LgbWorker;
|
|
|
|
internal sealed class TerritoryEntry
|
|
{
|
|
[JsonPropertyName("rowId")]
|
|
public uint RowId { get; set; }
|
|
|
|
[JsonPropertyName("bgPath")]
|
|
public string BgPath { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("intendedUse")]
|
|
public byte IntendedUse { get; set; }
|
|
|
|
[JsonPropertyName("hasAetheryte")]
|
|
public bool HasAetheryte { get; set; }
|
|
}
|