OperatorCreateRequest.cs
1 namespace GUNRPG.Application.Requests; 2 3 public sealed class OperatorCreateRequest 4 { 5 public string Name { get; init; } = string.Empty; 6 public Guid AccountId { get; init; } 7 }
1 namespace GUNRPG.Application.Requests; 2 3 public sealed class OperatorCreateRequest 4 { 5 public string Name { get; init; } = string.Empty; 6 public Guid AccountId { get; init; } 7 }