eShopOnContainers/src/Web/WebSPA/AppSettings.cs

18 lines
463 B
C#
Raw Normal View History

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; }
2017-06-19 09:46:19 +02:00
public string MarketingUrl { get; set; }
}
}