add create signup code

This commit is contained in:
john 2025-05-18 19:11:43 +02:00
parent 161dcf7cab
commit fbc6f562e3
9 changed files with 105 additions and 2 deletions

View file

@ -3,4 +3,4 @@ using Femto.Modules.Auth.Application.Dto;
namespace Femto.Modules.Auth.Application.Commands.Register;
public record RegisterCommand(string Username, string Password) : ICommand<RegisterResult>;
public record RegisterCommand(string Username, string Password, string SignupCode) : ICommand<RegisterResult>;