ScientificReport
Grant.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel.DataAnnotations;
5 
6 namespace ScientificReport.DAL.Entities
7 {
8  public class Grant
9  {
10  [Key]
11  public Guid Id { get; set; }
12 
13  public string Info { get; set; }
14 
15  public virtual ICollection<UserProfilesGrants> UserProfilesGrants { get; set; }
16  }
17 }