using System; using System.Collections.Generic; using System.Text; namespace Progrart.Core.Storage { public interface IStorageProvider { Task TryOpenRead(string path); Task TryOpenWrite(string path); } }