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

30 lines
1.5 KiB
C#

namespace Netina.AdminPanel.PWA.Models;
public static class Address
{
public static string WebSiteAddress = string.Empty;
public static string StorageAddress = string.Empty;
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";
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";
public static string CommentController => $"/comment";
}