ScientificReport
ScientificWork.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
3 
4 namespace ScientificReport.DAL.Entities.Publications
5 {
7  {
8  public string Cypher { get; set; }
9 
10  public string Category { get; set; }
11 
12  public string Contents { get; set; }
13 
14  public ICollection<UserProfilesScientificWorks> UserProfilesScientificWorks { get; set; }
15  }
16 }