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 16:59:42 +00:00
|
|
|
|
public bool Fly { get; set; }
|
2024-08-02 18:04:45 +00:00
|
|
|
|
|
|
|
|
|
public List<GatheringLocation> Locations { get; set; } = [];
|
|
|
|
|
}
|