9 lines
179 B
C#
9 lines
179 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Questionable.Model.Gathering;
|
|||
|
|
|||
|
public sealed class GatheringNodeGroup
|
|||
|
{
|
|||
|
public List<GatheringNode> Nodes { get; set; } = [];
|
|||
|
}
|