21 lines
568 B
C#
21 lines
568 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AlfaPrentice.Models
|
|
{
|
|
public class Weekstaten
|
|
{
|
|
[Key]
|
|
public int Weekstaten_ID { get; set; }
|
|
public string Beschrijving { get; set; }
|
|
public DateTime BeginDatumTijd { get; set; }
|
|
public DateTime EindDatumTijd { get; set; }
|
|
public int Student_ID { get; set; }
|
|
public string Status { get; set; }
|
|
public int GewerkteUren { get; set; }
|
|
}
|
|
}
|