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
|
|
|
|
|
{
|
|
|
|
|
public string IdentityUrl { get; set; }
|
|
|
|
|
public string BasketUrl { get; set; }
|
2017-06-19 09:46:19 +02:00
|
|
|
|
public string MarketingUrl { get; set; }
|
2018-02-06 17:35:01 +00:00
|
|
|
|
|
|
|
|
|
public string PurchaseUrl { get; set; }
|
2018-04-19 00:58:09 +02:00
|
|
|
|
public string SignalrHubUrl { get; set; }
|
2018-02-06 17:35:01 +00:00
|
|
|
|
|
2017-06-30 16:31:22 +02:00
|
|
|
|
public string ActivateCampaignDetailFunction { get; set; }
|
2018-02-06 17:35:01 +00:00
|
|
|
|
public bool UseCustomizationData { get; set; }
|
2017-01-10 11:37:36 +01:00
|
|
|
|
}
|
|
|
|
|
}
|