2024-01-22 17:26:29 +03:30
|
|
|
|
namespace NetinaShop.AdminPanel.PWA.Models;
|
|
|
|
|
|
|
|
|
|
|
|
public static class Address
|
|
|
|
|
|
{
|
|
|
|
|
|
#if DEBUG
|
2024-02-04 16:52:32 +03:30
|
|
|
|
public static string BaseAddress = "http://localhost:32770/api";
|
|
|
|
|
|
//public static string BaseAddress = "https://api.vesmook.com/api";
|
2024-01-22 17:26:29 +03:30
|
|
|
|
#else
|
2024-02-01 20:09:11 +03:30
|
|
|
|
public static string BaseAddress = "https://api.vesmook.com/api";
|
2024-01-22 17:26:29 +03:30
|
|
|
|
#endif
|
|
|
|
|
|
public static string AuthController = $"{BaseAddress}/auth";
|
|
|
|
|
|
public static string UserController = $"{BaseAddress}/user";
|
|
|
|
|
|
public static string ProductCategoryController = $"{BaseAddress}/product/category";
|
2024-01-28 20:51:50 +03:30
|
|
|
|
public static string ProductController = $"{BaseAddress}/product";
|
2024-01-23 09:13:40 +03:30
|
|
|
|
public static string BrandController = $"{BaseAddress}/brand";
|
2024-01-30 02:33:27 +03:30
|
|
|
|
public static string FileController => $"{BaseAddress}/file";
|
2024-01-30 19:35:44 +03:30
|
|
|
|
public static string BlogController => $"{BaseAddress}/blog";
|
|
|
|
|
|
public static string BlogCategoryController => $"{BaseAddress}/blog/category";
|
2024-02-04 16:52:32 +03:30
|
|
|
|
public static string DiscountController => $"{BaseAddress}/discount";
|
2024-02-09 19:43:20 +03:30
|
|
|
|
public static string RoleController => $"{BaseAddress}/user/role";
|
2024-01-22 17:26:29 +03:30
|
|
|
|
}
|