8 lines
196 B
C#
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>();
|
|
}
|