16 lines
695 B
C#
16 lines
695 B
C#
namespace NetinaShop.AdminPanel.PWA.Models;
|
|
|
|
public static class Address
|
|
{
|
|
#if DEBUG
|
|
public static string BaseAddress = "http://localhost:32770/api";
|
|
//public static string BaseAddress = "https://apinetinashop.visabartar.com/api";
|
|
#else
|
|
public static string BaseAddress = "https://apinetinashop.visabartar.com/api";
|
|
#endif
|
|
public static string AuthController = $"{BaseAddress}/auth";
|
|
public static string UserController = $"{BaseAddress}/user";
|
|
public static string ProductCategoryController = $"{BaseAddress}/product/category";
|
|
public static string ProductController = $"{BaseAddress}/product";
|
|
public static string BrandController = $"{BaseAddress}/brand";
|
|
} |