IConfigurationAppService.cs 296 B

1234567891011
  1. using System.Threading.Tasks;
  2. using Abp.Application.Services;
  3. using WePlatform.BaseSystem.Configuration.Dto;
  4. namespace WePlatform.BaseSystem.Configuration
  5. {
  6. public interface IConfigurationAppService : IApplicationService
  7. {
  8. Task ChangeUiTheme(ChangeUiThemeInput input);
  9. }
  10. }