Add OtpDialogService for mobile-friendly OTP authentication dialog

This commit is contained in:
masoodafar-web
2025-11-17 02:53:51 +03:30
parent a0c1452a84
commit 52b8298a18
34 changed files with 1495 additions and 279 deletions

View File

@@ -15,6 +15,11 @@ public static class RouteConstants
public static class Profile
{
public const string Index = "/profile";
public const string Personal = "/profile/personal";
public const string Addresses = "/profile/addresses";
public const string Settings = "/profile/settings";
public const string Tree = "/profile/tree";
public const string Wallet = "/profile/wallet";
}
public static class Package
@@ -41,4 +46,14 @@ public static class RouteConstants
{
public const string Index = "/checkout";
}
public static class Store
{
public const string Products = "/products";
public const string ProductDetail = "/product/"; // usage: /product/{id}
public const string Cart = "/cart";
public const string CheckoutSummary = "/checkout-summary";
public const string Orders = "/orders";
public const string OrderDetail = "/order/"; // usage: /order/{id}
}
}