feat: add AppUser, AppRole, RefreshToken entities

This commit is contained in:
Chris Chen
2026-05-25 19:02:22 -07:00
parent 5a789fb0c2
commit 40d740d6e0
3 changed files with 58 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
using Microsoft.AspNetCore.Identity;
namespace ROLAC.API.Entities;
public class AppRole : IdentityRole
{
public string? Description { get; set; }
}