Questionable/Questionable.Model/Gathering/GatheringNode.cs

11 lines
220 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 GatheringNode
{
public uint DataId { get; set; }
public List<GatheringLocation> Locations { get; set; } = [];
}