using System.Threading; using System.Threading.Tasks; namespace Microsoft.eShopWeb.ApplicationCore.Interfaces { public interface IFileSystem { Task SavePicture(string pictureName, string pictureBase64, CancellationToken cancellationToken); } }