ScientificReport
Membership.cs
Go to the documentation of this file.
1 using System;
2 using System.ComponentModel.DataAnnotations;
3 
4 namespace ScientificReport.DAL.Entities
5 {
6  public class Membership
7  {
8  public enum Types
9  {
10  EditorialBoard,
11  ScientificCouncil,
12  ExpertCouncil
13  }
14 
15  [Key]
16  public Guid Id { get; set; }
17 
18  public Types Type { get; set; }
19 
20  public string MembershipInfo { get; set; }
21 
22  public virtual UserProfile.UserProfile User { get; set; }
23  }
24 }