18 lines
365 B
C#
18 lines
365 B
C#
namespace Project.Application.DTOs.Incoming
|
|
{
|
|
public class CreatingUserDto
|
|
{
|
|
public string Email { 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; }
|
|
}
|
|
}
|