erp-platform/api/modules/Erp.Settings/Erp.Settings.Application.Contracts/ISettingUiAppService.cs
2025-11-11 22:49:52 +03:00

11 lines
267 B
C#

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