1
0
forked from liza/Questionable
Questionable/Questionable.Model/Gathering/GatheringNode.cs
2024-08-02 20:04:59 +02:00

11 lines
220 B
C#

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