# Conflicts: # docker-compose.override.yml # src/Web/WebMVC/WebMVC.csproj # src/Web/WebMVC/wwwroot/css/shared/components/identity/identity.css # src/Web/WebMVC/wwwroot/css/site.min.css # src/Web/WebSPA/AppSettings.cs
19 lines
511 B
C#
19 lines
511 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 bool UseCustomizationData { get; set; }
|
|
}
|
|
}
|