Questionable/Questionable/Model/V1/QuestStep.cs

12 lines
270 B
C#
Raw Normal View History

2024-05-25 21:51:37 +00:00
using System.Numerics;
namespace Questionable.Model.V1;
public class QuestStep
{
public required string InteractionType { get; set; }
public ulong? DataId { get; set; }
public Vector3 Position { get; set; }
public ushort TerritoryId { get; set; }
}