14 lines
490 B
C#
14 lines
490 B
C#
// src/Webshop.Application/Services/Admin/Interfaces/IAdminSettingService.cs
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Webshop.Application;
|
|
using Webshop.Application.DTOs.Settings;
|
|
|
|
namespace Webshop.Application.Services.Admin.Interfaces
|
|
{
|
|
public interface IAdminSettingService
|
|
{
|
|
Task<ServiceResult<Dictionary<string, List<SettingDto>>>> GetAllGroupedAsync();
|
|
Task<ServiceResult> UpdateSettingsAsync(List<SettingDto> settings);
|
|
}
|
|
} |