2017-01-10 11:37:36 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace eShopOnContainers.WebSPA
|
|
|
|
|
{
|
|
|
|
|
public class AppSettings
|
|
|
|
|
{
|
2017-03-17 15:38:18 -07:00
|
|
|
|
public string BaseUrl { get; set; }
|
2017-01-10 11:37:36 +01:00
|
|
|
|
public string CatalogUrl { get; set; }
|
|
|
|
|
public string OrderingUrl { get; set; }
|
|
|
|
|
public string IdentityUrl { get; set; }
|
|
|
|
|
public string BasketUrl { get; set; }
|
2017-06-19 09:46:19 +02:00
|
|
|
|
public string MarketingUrl { get; set; }
|
2017-06-30 16:31:22 +02:00
|
|
|
|
public string ActivateCampaignDetailFunction { get; set; }
|
2017-06-28 12:20:20 +02:00
|
|
|
|
public bool UseCustomizationData { get; set; }
|
2017-01-10 11:37:36 +01:00
|
|
|
|
}
|
|
|
|
|
}
|