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