ef6d233bbc
Build and Deploy to Kubernetes / build-and-deploy (push) Failing after 2m45s
- Removed the address selection UI and related logic from the Checkout page to streamline the user experience. - Updated the payment validation to only require package selection, enhancing clarity for users. - Adjusted the loading of addresses in related components based on user authentication status, ensuring addresses are only loaded when available. These changes improve the overall usability of the checkout process by focusing on essential selections and reducing unnecessary complexity.
15 lines
540 B
C#
15 lines
540 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; }
|
|
public bool HasAddress { get; set; }
|
|
} |