[ADD] Base Authority initial commit

This commit is contained in:
max
2024-12-21 15:30:17 +01:00
parent 21675300bb
commit 2361e12847
18 changed files with 155 additions and 30 deletions

View File

@@ -0,0 +1,10 @@
namespace DotBased.AspNet.Authority.Models.Authority;
public class AuthorityUser : AuthorityUserBase<Guid>
{
public AuthorityUser()
{
Id = Guid.NewGuid();
CreatedDate = DateTime.Now;
}
}