ScientificReport
PublicationDetailsModel.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
2 
3 namespace ScientificReport.DTO.Models.Publication
4 {
6  {
7  public DAL.Entities.Publications.Publication Publication { get; set; }
8 
9  public bool UserIsAuthor { get; set; }
10 
11  public IEnumerable<DAL.Entities.UserProfile.UserProfile> Authors { get; set; }
12  }
13 }