classlib/ExpenseTracker.Application/Users/Commands/Create/CreateUserCommand.cs
2024-08-07 21:12:02 +03:00

13 lines
258 B
C#

using MediatR;
namespace ExpenseTracker.Application.Users.Commands.Create;
public record CreateUserCommand : IRequest<UserDto>
{
public string Email { get; set; }
public string Password { get; set; }
public List<string> Roles { get; set; }
}