* 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 * Removed unused usings * Simple Refactoring
32 lines
879 B
C#
32 lines
879 B
C#
namespace Microsoft.eShopOnContainers.WebMVC
|
|
{
|
|
public class AppSettings
|
|
{
|
|
//public Connectionstrings ConnectionStrings { get; set; }
|
|
public string MarketingUrl { get; set; }
|
|
public string PurchaseUrl { get; set; }
|
|
public string SignalrHubUrl { get; set; }
|
|
public bool ActivateCampaignDetailFunction { get; set; }
|
|
public Logging Logging { get; set; }
|
|
public bool UseCustomizationData { get; set; }
|
|
}
|
|
|
|
public class Connectionstrings
|
|
{
|
|
public string DefaultConnection { get; set; }
|
|
}
|
|
|
|
public class Logging
|
|
{
|
|
public bool IncludeScopes { get; set; }
|
|
public Loglevel LogLevel { get; set; }
|
|
}
|
|
|
|
public class Loglevel
|
|
{
|
|
public string Default { get; set; }
|
|
public string System { get; set; }
|
|
public string Microsoft { get; set; }
|
|
}
|
|
}
|