11 lines
322 B
C#
11 lines
322 B
C#
namespace QtCNETAPI.Dtos.User
|
|
{
|
|
public class UserDto
|
|
{
|
|
public string Username { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public DateTime DateOfBirth { get; set; } = new DateTime();
|
|
}
|
|
}
|