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 407ce41 commit 6970790Copy full SHA for 6970790
src/Our.Umbraco.AuthU/Models/OAuthClient.cs
@@ -19,16 +19,8 @@ public class OAuthClient
19
[NullSetting(NullSetting = NullSettings.NotNull)]
20
public string Name { get; set; }
21
22
- [Column("SecurityLevel")]
23
24
- public int __SecurityLevel { get; set; }
25
-
26
- [Ignore]
27
- public SecurityLevel SecurityLevel
28
- {
29
- get { return (SecurityLevel)this.__SecurityLevel; }
30
- set { this.__SecurityLevel = (int)value; }
31
- }
+ public SecurityLevel SecurityLevel { get; set; }
32
33
public bool Active { get; set; }
34
0 commit comments