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

13 lines
258 B
C#

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