AdminPanel/Netina.AdminPanel.PWA/Models/Address.cs

30 lines
1.5 KiB
C#
Raw Normal View History

2024-04-17 16:19:43 +03:30
namespace Netina.AdminPanel.PWA.Models;
public static class Address
{
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 SubProductController = $"/sub/product";
2024-05-16 13:52:55 +03:30
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";
public static string FaqController => $"/faq";
2024-09-25 17:08:35 +03:30
public static string CommentController => $"/comment";
}