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

19 lines
470 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class Sollicitatie
{
[Key]
public int Sollicitatie_ID { get; set; }
public DateTime SolicitaieDatum { get; set; }
public string Status { get; set; }
public int Bedrijf_ID { get; set; }
public int Student_ID { get; set; }
}
}