using System.Threading.Tasks; using Abp.Application.Services; using WeApp.BaseSystem.Configuration.Dto; namespace WeApp.BaseSystem.Configuration { public interface IConfigurationAppService : IApplicationService { Task ChangeUiTheme(ChangeUiThemeInput input); } }