shop info

This commit is contained in:
Tizian.Breuch
2025-09-25 16:38:11 +02:00
parent 654acddf42
commit eb1f58d81f
3 changed files with 15 additions and 7 deletions

View File

@@ -1,11 +1,12 @@
// src/Webshop.Application/Services/Public/IShopInfoService.cs
using System.Threading.Tasks;
using Webshop.Application;
using Webshop.Application.DTOs.Shop;
namespace Webshop.Application.Services.Public
{
public interface IShopInfoService
{
Task<PublicShopInfoDto> GetPublicShopInfoAsync();
Task<ServiceResult<PublicShopInfoDto>> GetPublicShopInfoAsync();
}
}