erp-platform/api/modules/Kurs.Settings/Kurs.Settings.Application.Contracts/ISettingUiAppService.cs

11 lines
267 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Kurs.Settings;
public interface ISettingUiAppService
{
Task<List<MainGroupedSettingDto>> GetListAsync();
Task UpdateSettingValuesAsync(Dictionary<string, object> settingValues);
}