DocSpace-buildtools/common/ASC.Data.Backup.Core/Core/IDataOperator.cs

13 lines
265 B
C#
Raw Normal View History

namespace ASC.Data.Backup;
public interface IDataWriteOperator : IDisposable
2020-05-20 15:14:44 +00:00
{
void WriteEntry(string key, Stream stream);
}
2020-05-20 15:14:44 +00:00
public interface IDataReadOperator : IDisposable
{
Stream GetEntry(string key);
IEnumerable<string> GetEntries(string key);
}