using System; using System.Collections.Generic; 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 string Geslacht { get; set; } public string Email { get; set; } public string Wachtwoord { get; set; } } }