You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.0 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace Microsoft.eShopOnContainers.WebMVC
  6. {
  7. public class AppSettings
  8. {
  9. public Connectionstrings ConnectionStrings { get; set; }
  10. public string CatalogUrl { get; set; }
  11. public string OrderingUrl { get; set; }
  12. public string BasketUrl { get; set; }
  13. public string MarketingUrl { get; set; }
  14. public string LocationsUrl { get; set; }
  15. public bool ActivateCampaignDetailFunction { get; set; }
  16. public Logging Logging { get; set; }
  17. public bool UseCustomizationData { get; set; }
  18. }
  19. public class Connectionstrings
  20. {
  21. public string DefaultConnection { get; set; }
  22. }
  23. public class Logging
  24. {
  25. public bool IncludeScopes { get; set; }
  26. public Loglevel LogLevel { get; set; }
  27. }
  28. public class Loglevel
  29. {
  30. public string Default { get; set; }
  31. public string System { get; set; }
  32. public string Microsoft { get; set; }
  33. }
  34. }