ScientificReport
ArticleModel.cs
Go to the documentation of this file.
1 namespace ScientificReport.DTO.Models.Article
2 {
3  public class ArticleModel
4  {
5  public DAL.Entities.Publications.Article.ArticleTypes Type { get; set; }
6 
7  public string Title { get; set; }
8 
9  public string LiabilityInfo { get; set; }
10 
11  public string DocumentInfo { get; set; }
12 
13  public string PublishingPlace { get; set; }
14 
15  public string PublishingHouseName { get; set; }
16 
17  public int PublishingYear { get; set; }
18 
19  public bool IsPeriodical { get; set; }
20 
21  // For periodical publications only
22  public int Number { get; set; }
23 
24  public int PagesAmount { get; set; }
25 
26  public bool IsPrintCanceled { get; set; }
27 
28  public bool IsRecommendedToPrint { get; set; }
29  }
30 }