2024-09-13 10:40:07 +02:00

18 lines
397 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; set; }
public ICollection<int> RoleIds { get; set; }
}
}