-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathEnums.cs
44 lines (40 loc) · 804 Bytes
/
Enums.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
namespace MultiTenancyFramework
{
/// <summary>
/// For AuditLog; what happened to the entity
/// </summary>
public enum EventType
{
Added = 0,
Modified = 1,
SoftDeleted = 2,
UnDeleted = 3,
DeletedForReal = 4,
Login = 5,
Logout = 6,
FailedLogin = 7
}
public enum AccessScope
{
BothCentralAndTenants = 1,
[EnumDescription("Root-Only")]
CentralOnly,
[EnumDescription("Tenant-Only")]
TenantsOnly,
}
public enum ImageType
{
Passport = 0,
Picture,
Signature,
LeftThumbPrint,
RightThumbPrint,
Other = 99,
}
public enum Gender
{
NotSpecified,
Male = 1,
Female
}
}