ScientificReport
ReportThesis.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel.DataAnnotations;
5 
6 namespace ScientificReport.DAL.Entities
7 {
8  public class ReportThesis
9  {
10  [Key]
11  public Guid Id { get; set; }
12 
13  public string Thesis { get; set; }
14 
15  public virtual Conference Conference { get; set; }
16 
17  public virtual ICollection<UserProfilesReportThesis> UserProfilesReportTheses { get; set; }
18  }
19 }