ScientificReport
TeacherReportsPostgraduateGuidances.cs
Go to the documentation of this file.
1 using System;
2 using System.ComponentModel.DataAnnotations;
3 
4 namespace ScientificReport.DAL.Entities.Reports
5 {
7  {
8  [Key]
9  public Guid Id { get; set; }
10 
11  public virtual TeacherReport TeacherReport { get; set; }
12 
13  public virtual PostgraduateGuidance PostgraduateGuidance { get; set; }
14 
15  }
16 }