using System.IO; using System.Threading.Tasks; namespace Wino.Domain.Interfaces { public interface IFileService { Task CopyFileAsync(string sourceFilePath, string destinationFolderPath); Task GetFileStreamAsync(string folderPath, string fileName); Task GetFileContentByApplicationUriAsync(string resourcePath); } }