11 lines
271 B
C#
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; }
|
|
}
|