ScientificReport
Main Page
Related Pages
Packages
Classes
Files
File List
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
}
ScientificReport.DAL.Entities.Membership
Definition:
Membership.cs:6
System
ScientificReport.DAL.Entities.Membership.Types
Types
Definition:
Membership.cs:8
ScientificReport
ScientificReport.DAL
Entities
Membership.cs
Generated by
1.8.11