Questionable/Questionable.Model/Gathering/GatheringNodeGroup.cs

9 lines
179 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 GatheringNodeGroup
{
public List<GatheringNode> Nodes { get; set; } = [];
}