ICustomConfigProvider.cs 236 B

123456789
  1. using System.Collections.Generic;
  2. namespace Abp.Configuration.Startup
  3. {
  4. public interface ICustomConfigProvider
  5. {
  6. Dictionary<string, object> GetConfig(CustomConfigProviderContext customConfigProviderContext);
  7. }
  8. }