13 lines
433 B
C#
13 lines
433 B
C#
// 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<Dictionary<string, List<SettingDto>>> GetAllGroupedAsync();
|
|
Task UpdateSettingsAsync(List<SettingDto> settings);
|
|
}
|
|
} |