namespace EternalArrowBackup.Contracts.SourceStorage { using System; using System.Threading.Tasks; public interface ISourceStorage { Task GetDirectory(string normalizedRelativePath); IObservable GetAllDirectories(); } }