20 lines
510 B
C#
20 lines
510 B
C#
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; }
|
|
}
|
|
}
|