2024-04-17 16:19:43 +03:30
|
|
|
|
namespace Netina.AdminPanel.PWA.Models;
|
2024-01-22 17:26:29 +03:30
|
|
|
|
|
|
|
|
|
|
public static class Address
|
|
|
|
|
|
{
|
2024-05-07 11:01:57 +03:30
|
|
|
|
public static string WebSiteAddress = string.Empty;
|
|
|
|
|
|
public static string StorageAddress = string.Empty;
|
2024-05-16 13:52:55 +03:30
|
|
|
|
public static string AuthController = $"/auth";
|
|
|
|
|
|
public static string UserController = $"/user";
|
|
|
|
|
|
public static string ProductCategoryController = $"/product/category";
|
|
|
|
|
|
public static string ProductController = $"/product";
|
|
|
|
|
|
public static string BrandController = $"/brand";
|
|
|
|
|
|
public static string FileController => $"/file";
|
|
|
|
|
|
public static string BlogController => $"/blog";
|
|
|
|
|
|
public static string BlogCategoryController => $"/blog/category";
|
|
|
|
|
|
public static string DiscountController => $"/discount";
|
|
|
|
|
|
public static string RoleController => $"/user/role";
|
|
|
|
|
|
public static string ShippingController => $"/warehouse/shipping";
|
|
|
|
|
|
public static string OrderController => $"/order";
|
|
|
|
|
|
public static string PaymentController => $"/accounting/pay";
|
|
|
|
|
|
public static string PageController => $"/page";
|
|
|
|
|
|
public static string ScraperController => $"/scraper";
|
|
|
|
|
|
public static string NewsletterMemberController => $"/newsletter/member";
|
|
|
|
|
|
public static string DashboardController => $"/dashboard";
|
|
|
|
|
|
public static string SettingController => $"/setting";
|
|
|
|
|
|
public static string DistrictController => $"/district";
|
2024-08-07 16:15:52 +03:30
|
|
|
|
public static string FaqController => $"/faq";
|
2024-01-22 17:26:29 +03:30
|
|
|
|
}
|