ScientificReport
PublicationBase.cs
Go to the documentation of this file.
1 using System;
2 using System.ComponentModel.DataAnnotations;
3 
4 namespace ScientificReport.DAL.Entities.Publications
5 {
6  public class PublicationBase
7  {
8  [Key]
9  public virtual Guid Id { get; set; }
10 
11  public virtual string Title { get; set; }
12 
13  public virtual int PublishingYear { get; set; }
14  }
15 }