Crud on users
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 52s

This commit is contained in:
2025-04-27 19:56:17 +02:00
parent 63622bd299
commit 757e9db08d
17 changed files with 182 additions and 44 deletions

View File

@@ -7,7 +7,9 @@ public class GlobalConstants
public readonly static Guid MEMBER_ID = Guid.Parse("{BCE14DEA-1748-4A76-8485-ADEE83DF5EFD}");
public const string ADMINISTRATOR = "Administrateur";
public const string ADMINISTRATOR_NORMALIZED = "ADMINISTRATEUR";
public const string MEMBER = "Membre";
public const string MEMBER_NORMALIZED = "MEMBRE";
public const string ADMIN_MEMBER = $"{ADMINISTRATOR}, {MEMBER}";
public const int JWT_DURATION_HOUR = 12;

View File

@@ -0,0 +1,6 @@
namespace GameIdeas.Shared.Dto;
public class IdDto
{
public string? Id { get; set; }
}