erp-platform/api/modules/Kurs.Settings/Kurs.Settings.Application.Contracts/ISettingUiAppService.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

10 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);
}