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/KV.cs

7 lines
194 B

namespace ZeroLevel.Services.PartitionStorage
{
public record KV<TKey, TValue>(TKey Key, TValue Value);
public record KVM<TKey, TValue, TMeta>(TKey Key, TValue Value, TMeta Meta);
}

Powered by TurnKey Linux.