ApplyXpRequest.cs
1 namespace GUNRPG.Application.Requests; 2 3 public sealed class ApplyXpRequest 4 { 5 public int XpAmount { get; init; } 6 public string Reason { get; init; } = string.Empty; 7 }
1 namespace GUNRPG.Application.Requests; 2 3 public sealed class ApplyXpRequest 4 { 5 public int XpAmount { get; init; } 6 public string Reason { get; init; } = string.Empty; 7 }