2020-12-18 12:58:49 +01:00

22 lines
614 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Evaluatie
{
[Key]
public int Evaluatie_ID { get; set; }
public string Beoordeling { get; set; }
public string Feedbakc { get; set; }
public int Student_ID { get; set; }
public int BPVdocent_ID { get; set; }
public int Praktijkbegeleider_ID { get; set; }
public int EvaluatieDatumTIjd { get; set; }
public bool Accodering { get; set; }
}
}