11 lines
267 B
C#
11 lines
267 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Kurs.Settings;
|
|||
|
|
|
|||
|
|
public interface ISettingUiAppService
|
|||
|
|
{
|
|||
|
|
Task<List<MainGroupedSettingDto>> GetListAsync();
|
|||
|
|
Task UpdateSettingValuesAsync(Dictionary<string, object> settingValues);
|
|||
|
|
}
|