sozsoft-platform/api/modules/Sozsoft.Settings/Sozsoft.Settings.Application.Contracts/ISettingUiAppService.cs

12 lines
271 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Sozsoft.Settings;
public interface ISettingUiAppService
{
Task<List<MainGroupedSettingDto>> GetListAsync();
Task UpdateSettingValuesAsync(Dictionary<string, object> settingValues);
}