Files
FrontOffice/src/FrontOffice.Main/Utilities/UserAuthInfo.cs
T
masoodafar-web 3af564be73
Build and Deploy / build (push) Failing after 1m21s
feat: add payment callback and referral link features
2025-12-16 02:33:56 +03:30

14 lines
499 B
C#

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; }
}