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.
31 lines
999 B
31 lines
999 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace Teso_API.Models
|
|
{
|
|
public class TesoUser
|
|
{
|
|
public string userGUID { get; set; }
|
|
public string username { get; set; }
|
|
public string firstname { get; set; }
|
|
public string lastname { get; set; }
|
|
public string description { get; set; }
|
|
public string email { get; set; }
|
|
public string phonenumber { get; set; }
|
|
public string address { get; set; }
|
|
public string gold { get; set; }
|
|
public string silver { get; set; }
|
|
public string friends { get; set; }
|
|
public string gender { get; set; }
|
|
public string country { get; set; }
|
|
public string displaypicture { get; set; }
|
|
public string cover_picture { get; set; }
|
|
public string thumbnail_dp { get; set; }
|
|
|
|
public DateTime? DateOfBirth { get; set; }
|
|
}
|
|
}
|
|
|