ScientificReport
ReportThesisDetails.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
2 
3 namespace ScientificReport.DTO.Models.ReportThesis
4 {
5  public class ReportThesisDetails
6  {
7  public DAL.Entities.ReportThesis ReportThesis { get; set; }
8  public ICollection<DAL.Entities.UserProfile.UserProfile> Authors { get; set; }
9  }
10 }