mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-07-16 09:37:23 +00:00
10 lines
361 B
C#
10 lines
361 B
C#
using MediatR;
|
|
|
|
namespace Features.Auth.Commands.ResendConfirmationEmail;
|
|
|
|
/// <summary>
|
|
/// Resends the account confirmation email to a user, generating a fresh confirmation token.
|
|
/// </summary>
|
|
/// <param name="UserId">The unique identifier of the user requesting the resend.</param>
|
|
public record ResendConfirmationEmailCommand(Guid UserId) : IRequest;
|