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; } } }