24 lines
995 B
C#
24 lines
995 B
C#
namespace TIAMWebApp.Shared.Application.Models.ClientSide
|
|
{
|
|
//appsettings.json
|
|
public class Setting
|
|
{
|
|
public static UserBasicDetails UserBasicDetails { get; set; }
|
|
//public const string BaseUrl = "https://touriam.mangoweb.hu";
|
|
//public const string ApiBaseUrl = "https://touriam.mangoweb.hu";
|
|
#if RELEASE
|
|
public const string BaseUrl = "https://test.touriam.com";
|
|
public const string ApiBaseUrl = "https://test.touriam.com";
|
|
//public const string BaseUrl = "https://touriam.com";
|
|
//public const string ApiBaseUrl = "https://touriam.com";
|
|
//public const string BaseUrl = "https://qa.touriam.com";
|
|
//public const string ApiBaseUrl = "https://qa.touriam.com";
|
|
#else
|
|
public const string BaseUrl = "https://localhost:7116";
|
|
public const string ApiBaseUrl = "https://localhost:7116";
|
|
#endif
|
|
public const bool DarkMode = false;
|
|
public static string Locale { get; set; }
|
|
}
|
|
}
|