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

21 lines
562 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class POK
{
[Key]
public int POK_ID { get; set; }
public bool Accodering { get; set; }
public DateTime AccoderingDatum { get; set; }
public DateTime AnnmaakDatum { get; set; }
public int Student_ID { get; set; }
public int BPVdocent_ID { get; set; }
public int Praktijkbegeleider_ID { get; set; }
}
}