18 lines
409 B
C#
18 lines
409 B
C#
using UserManagement.Application.Dtos.Outgoing;
|
|
|
|
namespace UserManagement.Application.Dtos.Incomming
|
|
{
|
|
public class CreatingUserDto
|
|
{
|
|
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; }
|
|
}
|
|
}
|