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.

13 lines
358 B

  1. using Microsoft.Extensions.Configuration;
  2. namespace CustomerOnlineRemit.Common.Configuration
  3. {
  4. public class ConfigurationManager
  5. {
  6. public static IConfiguration? AppSettings { get; private set; }
  7. public static void SetConfiguration(IConfiguration configuration)
  8. {
  9. AppSettings = configuration;
  10. }
  11. }
  12. }