Newer
Older
MessageEncryption / src / ApplicationCore / Interfaces / IFileSystem.cs
@Derek Comartin Derek Comartin on 1 Dec 2021 274 bytes Init
using System.Threading;
using System.Threading.Tasks;

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