[ADD] Added base options

This commit is contained in:
max
2024-12-23 00:59:13 +01:00
parent 44e64793b7
commit 797323789e
12 changed files with 69 additions and 16 deletions

View File

@@ -17,7 +17,7 @@ public class AuthorityAttribute
public string BoundId { get; set; } // Bound to User, Group, Role id
public string? AttributeValue { get; set; }
public object? AttributeValue { get; set; }
public string? Type { get; set; } // AspNet.Claim.Role/Property/Data.JSON, Data.Raw, Data.Base64 etc.

View File

@@ -22,6 +22,8 @@ public abstract class AuthorityUser<TKey> where TKey : IEquatable<TKey>
public bool Enabled { get; set; }
public bool Confirmed { get; set; }
public bool Locked { get; set; }
public DateTime LockedDate { get; set; }