Backend for the Teso project written in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
699 B

3 months ago
using System;
using System.Collections.Generic;
#nullable disable
namespace Teso_API.Models
{
public partial class TesoUserDetail
{
public string UserGUID { get; set; }
public string Username { get; set; }
public string Firstname { get; set; }
public string Surname { get; set; }
public string Description { get; set; }
public string Address { get; set; }
public string Email { get; set; }
public string ThumbnailDp { get; set; }
public int? Phonenumber { get; set; }
public string Country { get; set; }
public string Gender { get; set; }
public DateTime? DateOfBirth { get; set; }
}
}