Enhance authentication flow; add user registration completion check and update contract acceptance process

This commit is contained in:
masoodafar-web
2025-11-17 00:17:10 +03:30
parent 680ef3a7e2
commit 772ed3523e
11 changed files with 536 additions and 91 deletions
@@ -0,0 +1,11 @@
namespace FrontOffice.Main.Utilities;
public class UserAuthInfo
{
public List<(string key, string value)> UserClaims { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
public string? NationalCode { get; set; }
public string? MobileNumber { get; set; }
public bool IsSignMainContract { get; set; }
}