14 lines
301 B
C#
14 lines
301 B
C#
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; }
|
|
}
|
|
}
|