Questionable/Questionable.Model/Gathering/GatheringNode.cs

12 lines
255 B
C#
Raw Normal View History

2024-08-02 18:04:45 +00:00
using System.Collections.Generic;
namespace Questionable.Model.Gathering;
public sealed class GatheringNode
{
public uint DataId { get; set; }
2024-08-11 19:48:01 +00:00
public bool? Fly { get; set; }
2024-08-02 18:04:45 +00:00
public List<GatheringLocation> Locations { get; set; } = [];
}