Membership

This commit is contained in:
2025-12-01 15:15:05 +01:00
parent b1bd4f01b6
commit 06321840a8
32 changed files with 1546 additions and 141 deletions

View File

@ -0,0 +1,8 @@
using Microsoft.AspNetCore.Identity;
namespace StandManager.Domain.Entita;
// Add profile data for application users by adding properties to the ApplicationUser class
public class ApplicationUser : IdentityUser
{
}

View File

@ -13,4 +13,4 @@ public class Utente : EntitaBase
{
return $"{Nome} {Cognome}";
}
}
}

View File

@ -8,11 +8,13 @@
<ItemGroup>
<SupportedPlatform Include="browser"/>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.21"/>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.21" />
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.3.1" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="9.0.11" />
</ItemGroup>
<ItemGroup>