# Conflicts: # docker-compose.override.yml # src/Services/Catalog/Catalog.API/CatalogSettings.cs # src/Services/Catalog/Catalog.API/Controllers/CatalogController.cs # src/Services/Catalog/Catalog.API/Controllers/PicController.cs # src/Services/Catalog/Catalog.API/Infrastructure/CatalogContextSeed.cs # src/Services/Catalog/Catalog.API/settings.json # src/Services/Ordering/Ordering.API/Startup.cs
13 lines
315 B
C#
13 lines
315 B
C#
namespace Microsoft.eShopOnContainers.Services.Catalog.API
|
|
{
|
|
public class CatalogSettings
|
|
{
|
|
public string PicBaseUrl { get;set;}
|
|
|
|
public string EventBusConnection { get; set; }
|
|
|
|
public bool UseCustomizationData { get; set; }
|
|
public bool AzureStorageEnabled { get; set; }
|
|
}
|
|
}
|