Questionable/Questionable.Model/Gathering/GatheringNodeGroup.cs

9 lines
179 B
C#

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