using System.Collections.Generic;

namespace Questionable.Model.Gathering;

public sealed class GatheringNodeGroup
{
    public List<GatheringNode> Nodes { get; set; } = [];
}