Questionable/Questionable.Model/Gathering/GatheringNode.cs

12 lines
255 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; } = [];
}