61 lines
1.5 KiB
C#
61 lines
1.5 KiB
C#
namespace FrontOffice.Main.Utilities;
|
|
|
|
public static class RouteConstants
|
|
{
|
|
public static class Main
|
|
{
|
|
public const string MainPage = "/";
|
|
}
|
|
|
|
public static class Registration
|
|
{
|
|
public const string Wizard = "/register";
|
|
}
|
|
|
|
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
|
|
{
|
|
public const string Detail = "/package/";
|
|
}
|
|
|
|
public static class About
|
|
{
|
|
public const string Index = "/about";
|
|
}
|
|
|
|
public static class FAQ
|
|
{
|
|
public const string Index = "/faq";
|
|
}
|
|
|
|
public static class Contact
|
|
{
|
|
public const string Index = "/contact";
|
|
}
|
|
|
|
public static class Checkout
|
|
{
|
|
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}
|
|
public const string Categories = "/categories";
|
|
}
|
|
}
|