Add authentication and identity support using ASP.NET Core Identity

This commit is contained in:
2026-01-23 21:28:16 +01:00
parent cec2b65c29
commit 534ec5f36f
9 changed files with 807 additions and 9 deletions

View File

@@ -0,0 +1,8 @@
using Microsoft.AspNetCore.Identity;
namespace API.Models.Internal.User;
public class User : IdentityUser
{
public string? Ininitals { get; set; }
}