DotBased/DotBased.AspNet.Authority/Models/Authority/AuthorityUser.cs

10 lines
215 B
C#
Raw Normal View History

2024-12-21 15:30:17 +01:00
namespace DotBased.AspNet.Authority.Models.Authority;
public class AuthorityUser : AuthorityUserBase<Guid>
{
public AuthorityUser()
{
Id = Guid.NewGuid();
CreatedDate = DateTime.Now;
}
}