* Removed Unused Using and Reorganized the Using * Removed unused using, Reorganized using, moved the class to separate file, removed commented code in Catalog.API * Revert "Removed unused using, Reorganized using, moved the class to separate file, removed commented code in Catalog.API" This reverts commit 34241c430619b3b0bbeaabafa44c078c859237c4. * Removed unused using and reorganized the using inside "Services" folder * Removed Unused using and reoganized the using * Refactor Webhooks.API * Removed unused using and reorganized using inside Catalog.API * Refactoring * Removed unsed using * Added line break just to differentiate between the messages
14 lines
323 B
C#
14 lines
323 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; }
|
|
}
|
|
}
|