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

This commit is contained in:
2026-07-19 00:41:53 +02:00
parent 43d627ab9d
commit 2b756d8e0c
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
{
}