18 lines
384 B
C#
18 lines
384 B
C#
namespace UserManagement.Application.Dtos.Incomming
|
|
{
|
|
public class UpdatingUserDto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string UserName { get; set; }
|
|
|
|
public string FirstName { get; set; }
|
|
|
|
public string LastName { get; set; }
|
|
|
|
public string Password { get; init; }
|
|
|
|
public int RoleId { get; set; }
|
|
}
|
|
}
|