14 lines
273 B
C#
14 lines
273 B
C#
using System.Numerics;
|
|
|
|
namespace QuestionableCompanion.Services;
|
|
|
|
public class CurrentTask
|
|
{
|
|
public required string Type { get; init; }
|
|
|
|
public ushort TerritoryId { get; init; }
|
|
|
|
public string? InteractionType { get; init; }
|
|
|
|
public Vector3? Position { get; init; }
|
|
}
|