Files
FrontOffice/src/FrontOffice.Main/Utilities/RouteConstants.cs

31 lines
589 B
C#
Raw Normal View History

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
public static class Auth
{
public const string Phone = "/auth/phone";
public const string Verify = "/auth/verify";
}
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-09-28 03:49:17 +03:30
}