ScientificReport
ReviewEditModel.cs
Go to the documentation of this file.
1 using System;
2 using System.ComponentModel.DataAnnotations;
3 
4 namespace ScientificReport.DTO.Models.Review
5 {
6  public class ReviewEditModel : ReviewModel
7  {
8  [Required]
9  public Guid Id { get; set; }
10 
11  public ReviewEditModel()
12  {
13  }
14 
15  public ReviewEditModel(DAL.Entities.Review review) : base(review)
16  {
17  Id = review.Id;
18  }
19  }
20 }