26 lines
500 B
C#
26 lines
500 B
C#
namespace FrontOffice.Main.Utilities;
|
|
|
|
public static class RouteConstants
|
|
{
|
|
public static class Main
|
|
{
|
|
public const string MainPage = "/";
|
|
}
|
|
|
|
public static class Auth
|
|
{
|
|
public const string Phone = "/auth/phone";
|
|
public const string Verify = "/auth/verify";
|
|
}
|
|
|
|
public static class Profile
|
|
{
|
|
public const string Index = "/profile";
|
|
}
|
|
|
|
public static class Package
|
|
{
|
|
public const string Detail = "/package/";
|
|
}
|
|
}
|