shop info

This commit is contained in:
Tizian.Breuch
2025-08-12 11:07:15 +02:00
parent 0a43b1d7e8
commit 1692fe198e
13 changed files with 387 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
// src/Webshop.Application/Services/Admin/IAdminShopInfoService.cs
using System.Threading.Tasks;
using Webshop.Application.DTOs.Shop;
namespace Webshop.Application.Services.Admin
{
public interface IAdminShopInfoService
{
Task<AdminShopInfoDto> GetShopInfoAsync();
Task UpdateShopInfoAsync(AdminShopInfoDto shopInfoDto);
}
}