2020-12-18 13:00:15 +01:00

26 lines
782 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Gebruiker
{
[Key]
public int Gebruiker_ID { get; set; }
public string Voornaam { get; set; }
public string Tussenvoegsel { get; set; }
public string Achternaam { get; set; }
public DateTime GeboorteDatum { get; set; }
public string Geslacht { get; set; }
public string Email { get; set; }
public int Telefoon { get; set; }
public string Wachtwoord { get; set; }
public string Profielfoto { get; set; }
public string Status { get; set; }
public int Adres_ID { get; set; }
}
}