12 lines
232 B
C#
12 lines
232 B
C#
using Aegis.Domain;
|
|
|
|
namespace Aegis.Application.Abstractions;
|
|
|
|
public sealed record DataStoreRow(
|
|
DataStoreId DataStoreId,
|
|
DataStoreRole Role,
|
|
byte[] NameEnc,
|
|
byte[] NameNonce,
|
|
string LkKid,
|
|
int LkVersion
|
|
); |