10 lines
356 B
C#
10 lines
356 B
C#
using Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations;
|
|
|
|
namespace KonSoft.InternalGateway.Aggregations.ApplicationConfiguration;
|
|
|
|
public interface IAppConfigurationAggregation
|
|
{
|
|
string AppConfigRouteName { get; }
|
|
string AppConfigEndpoint { get; }
|
|
Task<ApplicationConfigurationDto> GetAppConfigurationAsync(AppConfigurationRequest input);
|
|
} |