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