Newer
Older
eShopOnWeb-MessageDriven / src / ApplicationCore / Interfaces / IFileSystem.cs
@Derek Comartin Derek Comartin on 29 Jun 2021 274 bytes Add NServiceBus
using System.Threading;
using System.Threading.Tasks;

namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
    public interface IFileSystem
    {
        Task<bool> SavePicture(string pictureName, string pictureBase64, CancellationToken cancellationToken);
    }
}