using System.Collections.Generic; namespace ZeroLevel.Services.PartitionStorage { public class PartitionSearchRequest { public TMeta Info { get; set; } public IEnumerable Keys { get; set; } } public class StoreSearchRequest { public IEnumerable> PartitionSearchRequests { get; set; } } }