forked from liza/Questionable
12 lines
270 B
C#
12 lines
270 B
C#
|
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; }
|
|||
|
}
|