Skip to content

Commit 6970790

Browse files
committed
Fix SecurityLevel property
1 parent 407ce41 commit 6970790

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/Our.Umbraco.AuthU/Models/OAuthClient.cs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,8 @@ public class OAuthClient
1919
[NullSetting(NullSetting = NullSettings.NotNull)]
2020
public string Name { get; set; }
2121

22-
[Column("SecurityLevel")]
2322
[NullSetting(NullSetting = NullSettings.NotNull)]
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-
}
23+
public SecurityLevel SecurityLevel { get; set; }
3224

3325
public bool Active { get; set; }
3426

0 commit comments

Comments
 (0)