11 lines
291 B
C#
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);
|
|
}
|
|
} |