// src/Webshop.Application/Services/Admin/Interfaces/IAdminSettingService.cs using System.Collections.Generic; using System.Threading.Tasks; using Webshop.Application.DTOs.Settings; namespace Webshop.Application.Services.Admin.Interfaces { public interface IAdminSettingService { Task>> GetAllGroupedAsync(); Task UpdateSettingsAsync(List settings); } }