We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87f6724 commit 5af0e62Copy full SHA for 5af0e62
Example/Data/Entities/User.cs
@@ -25,6 +25,8 @@ public User()
25
[NotMapped]
26
public string Ignored { get; set; }
27
28
+ public UserType Type { get; set; }
29
+
30
public Guid Test2 { get; set; }
31
32
@@ -47,5 +49,10 @@ public string[] VContents
47
49
public virtual List<Content> Contents { get; set; }
48
50
51
public virtual List<Setting> Settings { get; set; }
52
53
+ public enum UserType
54
+ {
55
+ Admin, User, Manager
56
+ }
57
}
58
0 commit comments