13 lines
233 B
C#
13 lines
233 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Progrart.Core.Storage
|
|||
|
|
{
|
|||
|
|
public interface IStorageProvider
|
|||
|
|
{
|
|||
|
|
Task<Stream?> TryOpenRead(string path);
|
|||
|
|
Task<Stream?> TryOpenWrite(string path);
|
|||
|
|
}
|
|||
|
|
}
|