19 lines
461 B
C#
19 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AlfaPrentice.Models
|
|
{
|
|
public class Document
|
|
{
|
|
[Key]
|
|
public int Document_ID { get; set; }
|
|
public string Bestand { get; set; }
|
|
public DateTime UploadDatumTijd { get; set; }
|
|
public int Versie { get; set; }
|
|
public int Gebruiker_ID { get; set; }
|
|
}
|
|
}
|