feat(server): adds ASP .NET Core identity framework authentication

This commit is contained in:
2026-07-19 00:41:53 +02:00
parent 574b24c288
commit b741a905f5
5 changed files with 204 additions and 6 deletions
@@ -0,0 +1,7 @@
using Microsoft.AspNetCore.Identity;
namespace ReverseLlama.Server.Models;
internal sealed class ApplicationUser : IdentityUser
{
}