mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
322 B
12 lines
322 B
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
namespace ZeroLevel.Services.Storages.PartitionFileSystemStorage
|
|
{
|
|
public interface IPartitionDataConverter<TRecord>
|
|
{
|
|
IEnumerable<TRecord> ReadFromStorage(Stream stream);
|
|
void WriteToStorage(Stream stream, IEnumerable<TRecord> data);
|
|
}
|
|
}
|