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

25 lines
749 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Afspraak
{
[Key]
public int Afspraak_ID { get; set; }
public int Agenda_ID { get; set; }
public DateTime BeginDatumeTijd { get; set; }
public int EindDaatumTijd { get; set; }
public string Locatie { get; set; }
public string Omschrijving { get; set; }
public string Onderwerp { get; set; }
public int Gebruiker_ID { get; set; }
public int Docent_ID { get; set; }
public int Student_ID { get; set; }
public int Praktijkbegeleider_ID { get; set; }
}
}