# Conflicts: # docker-compose.vs.debug.yml # docker-compose.vs.release.yml # eShopOnContainers-ServicesAndWebApps.sln # src/Services/Location/Locations.API/Startup.cs # src/Services/Marketing/Marketing.API/Controllers/CampaignsController.cs # src/Services/Marketing/Marketing.API/Marketing.API.csproj # src/Services/Marketing/Marketing.API/Startup.cs # src/Web/WebMVC/appsettings.json # src/Web/WebSPA/AppSettings.cs # test/Services/FunctionalTests/Services/Marketing/MarketingScenarios.cs
20 lines
578 B
C#
20 lines
578 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace eShopOnContainers.WebSPA
|
|
{
|
|
public class AppSettings
|
|
{
|
|
public string BaseUrl { get; set; }
|
|
public string CatalogUrl { get; set; }
|
|
public string OrderingUrl { get; set; }
|
|
public string IdentityUrl { get; set; }
|
|
public string BasketUrl { get; set; }
|
|
public string MarketingUrl { get; set; }
|
|
public string ActivateCampaignDetailFunction { get; set; }
|
|
public bool UseCustomizationData { get; set; }
|
|
}
|
|
}
|