Adapt MVC app to azure function details campaign Adapt SPA app to azure function details campaign
14 lines
498 B
C#
14 lines
498 B
C#
namespace Microsoft.eShopOnContainers.Services.Marketing.API
|
|
{
|
|
public class MarketingSettings
|
|
{
|
|
public string ConnectionString { get; set; }
|
|
public string MongoConnectionString { get; set; }
|
|
public string MongoDatabase { get; set; }
|
|
public string ExternalCatalogBaseUrl { get; set; }
|
|
public string CampaignDetailFunctionUri { get; set; }
|
|
public string PicBaseUrl { get; set; }
|
|
public bool AzureStorageEnabled { get; set; }
|
|
}
|
|
}
|