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