qstbak/Questionable.Model/Questionable.Model.Gathering/GatheringNode.cs
2025-10-09 07:47:19 +10:00

12 lines
271 B
C#

using System.Collections.Generic;
namespace Questionable.Model.Gathering;
public sealed class GatheringNode
{
public uint DataId { get; set; }
public bool? Fly { get; set; }
public List<GatheringLocation> Locations { get; set; } = new List<GatheringLocation>();
}