ScientificReport
Publication.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
2 
3 namespace ScientificReport.DTO.Models.Publication.Models
4 {
5  public class Publication
6  {
7  public DAL.Entities.Publications.Publication.PublicationTypes Type { get; set; }
8 
9  public string Title { get; set; }
10 
11  public string Specification { 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 int PagesAmount { get; set; }
20 
21  public DAL.Entities.Publications.Publication.PrintStatuses PrintStatus { get; set; }
22 
23  public IEnumerable<string> PrintStatusOptions { get; set; }
24  }
25 }