ScientificReport
Review.cs
Go to the documentation of this file.
1 using System;
2 using System.ComponentModel.DataAnnotations;
4 
5 namespace ScientificReport.DAL.Entities
6 {
7  public class Review
8  {
9  [Key]
10  public Guid Id { get; set; }
11 
12  public virtual Publication Work { get; set; }
13 
14  [DataType(DataType.Date)]
15  public DateTime DateOfReview { get; set; }
16 
17  public virtual UserProfile.UserProfile Reviewer { get; set; }
18  }
19 }