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

12 lines
267 B
C#
Raw Normal View History

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