1
0
Fork 0
forked from aly/qstbak

muffin v7.5.11

This commit is contained in:
alydev 2026-08-17 20:29:32 +10:00
parent addf2d530f
commit 3102923ce2
522 changed files with 41082 additions and 211592 deletions

View file

@ -0,0 +1,18 @@
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; }
}