feat: add payment callback and referral link features
Build and Deploy / build (push) Failing after 1m21s

This commit is contained in:
masoodafar-web
2025-12-16 02:33:56 +03:30
parent 3c528aba48
commit 3af564be73
7 changed files with 425 additions and 33 deletions
@@ -3,9 +3,12 @@ namespace FrontOffice.Main.Utilities;
public class UserAuthInfo
{
public List<(string key, string value)> UserClaims { get; set; }
public long UserId { 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; }
public bool HasPurchasedPackage { get; set; }
public bool IsClubMemberActive { get; set; }
}