IApiProxyScriptingConfiguration.cs 464 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Abp.Web.Api.ProxyScripting.Configuration
  4. {
  5. public interface IApiProxyScriptingConfiguration
  6. {
  7. /// <summary>
  8. /// Used to add/replace proxy script generators.
  9. /// </summary>
  10. IDictionary<string, Type> Generators { get; }
  11. /// <summary>
  12. /// Default: true.
  13. /// </summary>
  14. bool RemoveAsyncPostfixOnProxyGeneration { get; set; }
  15. }
  16. }