11 lines
220 B
C#
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; } = [];
|
|||
|
}
|