using System.Collections.Generic; using System.Threading.Tasks; namespace ZeroLevel.Services.Storages.PartitionFileSystemStorage { public interface IPartitionFileStorage { Task WriteAsync(TKey key, IEnumerable records); Task> CollectAsync(IEnumerable keys); void Drop(TKey key); } }