2026-07-23 13:54:06 -07:00

11 lines
320 B
C#

namespace qtc_api.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();
}
}