IntentDto.cs
1 using GUNRPG.Core.Intents; 2 3 namespace GUNRPG.Application.Dtos; 4 5 public sealed class IntentDto 6 { 7 public PrimaryAction? Primary { get; set; } 8 public MovementAction? Movement { get; set; } 9 public StanceAction? Stance { get; set; } 10 public CoverAction? Cover { get; set; } 11 public bool CancelMovement { get; set; } 12 }