sozsoft-platform/api/modules/Sozsoft.Settings/Sozsoft.Settings.Application.Contracts/ISettingUiAppService.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

11 lines
271 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
namespace Sozsoft.Settings;
public interface ISettingUiAppService
{
Task<List<MainGroupedSettingDto>> GetListAsync();
Task UpdateSettingValuesAsync(Dictionary<string, object> settingValues);
}