ScientificReport
GrantModel.cs
Go to the documentation of this file.
1 using System.ComponentModel.DataAnnotations;
2 
3 namespace ScientificReport.DTO.Models.Grant
4 {
5  public class GrantModel
6  {
7  [Required]
8  public string Info { get; set; }
9 
10  public GrantModel()
11  {
12  }
13 
14  public GrantModel(DAL.Entities.Grant grant)
15  {
16  Info = grant.Info;
17  }
18  }
19 }
GrantModel(DAL.Entities.Grant grant)
Definition: GrantModel.cs:14