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

8 lines
196 B
C#

using System.Collections.Generic;
namespace Questionable.Model.Gathering;
public sealed class GatheringNodeGroup
{
public List<GatheringNode> Nodes { get; set; } = new List<GatheringNode>();
}