classlib/ExpenseTracker.Application/Authentication/Commands/RegisterWithEmail/RegisterWithEmailCommand.cs
2024-08-07 21:12:02 +03:00

9 lines
198 B
C#

using MediatR;
namespace ExpenseTracker.Application.Authentication.Commands.RegisterWithEmail;
public record RegisterWithEmailCommand : IRequest
{
public required string Email { get; set; }
}