femto-backend/Femto.Modules.Auth/Application/Commands/CreateSignupCode/CreateSignupCodeCommand.cs
2025-05-18 19:11:43 +02:00

5 lines
No EOL
203 B
C#

using Femto.Common.Domain;
namespace Femto.Modules.Auth.Application.Commands.CreateSignupCode;
public record CreateSignupCodeCommand(string Code, string RecipientEmail, string RecipientName): ICommand;