2020-12-10 14:59:47 +01:00

18 lines
410 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Models
{
public class BPVDocent
{
[Key]
public int BPVdocent_ID { get; set; }
public int Docent_ID { get; set; }
public int Student_ID { get; set; }
public int Traject_ID { get; set; }
}
}