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.
Zero/ZeroLevel/Services/PartitionStorage/Search/StorePartitionKeyValueSearc...

17 lines
356 B

2 years ago
namespace ZeroLevel.Services.PartitionStorage
{
public enum SearchResult
{
Success,
NotFound,
FileLocked
}
2 years ago
public class StorePartitionKeyValueSearchResult<TKey, TValue>
{
public SearchResult Status { get; set; }
2 years ago
public TKey Key { get; set; }
public TValue Value { get; set; }
}
}

Powered by TurnKey Linux.