using System.Collections.Generic; using System.Threading.Tasks; namespace Erp.Settings; public interface ISettingUiAppService { Task> GetListAsync(); Task UpdateSettingValuesAsync(Dictionary settingValues); }