femto-backend/Femto.Modules.Auth/Application/Commands/Register/RegisterCommand.cs
2025-05-14 23:53:00 +02:00

6 lines
No EOL
222 B
C#

using Femto.Common.Domain;
using Femto.Modules.Auth.Application.Dto;
namespace Femto.Modules.Auth.Application.Commands.Register;
public record RegisterCommand(string Username, string Password) : ICommand<RegisterResult>;