Files
KonSoft.Clean/gateways/KonSoft.InternalGateway/Aggregations/Localization/ILocalizationAggregation.cs

10 lines
337 B
C#

using Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations;
namespace KonSoft.InternalGateway.Aggregations.Localization;
public interface ILocalizationAggregation
{
string LocalizationRouteName { get; }
string LocalizationEndpoint { get; }
Task<ApplicationLocalizationDto> GetLocalizationAsync(LocalizationRequest input);
}