Files
ShopSolution-backend/Webshop.Domain/Interfaces/IFileStorageService.cs
Tizian.Breuch 195d794703 file
2025-09-25 14:57:13 +02:00

11 lines
291 B
C#

// src/Webshop.Domain/Interfaces/IFileStorageService.cs
using System.IO;
using System.Threading.Tasks;
namespace Webshop.Domain.Interfaces
{
public interface IFileStorageService
{
Task<string> SaveFileAsync(Stream fileStream, string fileName, string contentType);
}
}