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

11 lines
271 B
C#

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