2025-09-28 03:49:17 +03:30
|
|
|
|
namespace FrontOffice.Main.Utilities;
|
2025-09-28 01:28:44 +03:30
|
|
|
|
|
|
|
|
|
|
public static class RouteConstants
|
|
|
|
|
|
{
|
|
|
|
|
|
public static class Main
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string MainPage = "/";
|
|
|
|
|
|
}
|
2025-09-28 03:49:17 +03:30
|
|
|
|
|
2025-11-09 20:24:09 +03:30
|
|
|
|
public static class Registration
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string Wizard = "/register";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-07 01:03:58 +03:30
|
|
|
|
public static class Profile
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string Index = "/profile";
|
|
|
|
|
|
}
|
2025-10-09 21:55:18 +03:30
|
|
|
|
|
|
|
|
|
|
public static class Package
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string Detail = "/package/";
|
|
|
|
|
|
}
|
2025-10-09 22:52:42 +03:30
|
|
|
|
|
|
|
|
|
|
public static class About
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string Index = "/about";
|
|
|
|
|
|
}
|
2025-10-12 13:03:09 +03:30
|
|
|
|
|
|
|
|
|
|
public static class FAQ
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string Index = "/faq";
|
|
|
|
|
|
}
|
2025-10-12 17:26:27 +03:30
|
|
|
|
|
|
|
|
|
|
public static class Contact
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string Index = "/contact";
|
|
|
|
|
|
}
|
2025-10-13 13:04:59 +03:30
|
|
|
|
|
|
|
|
|
|
public static class Checkout
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string Index = "/checkout";
|
|
|
|
|
|
}
|
2025-09-28 03:49:17 +03:30
|
|
|
|
}
|