using System; using System.Collections.Generic; namespace Abp.Web.Api.ProxyScripting.Configuration { public interface IApiProxyScriptingConfiguration { /// /// Used to add/replace proxy script generators. /// IDictionary Generators { get; } /// /// Default: true. /// bool RemoveAsyncPostfixOnProxyGeneration { get; set; } } }