8 lines
138 B
C#
8 lines
138 B
C#
|
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
|
||
|
|
namespace IdentityShroud.Core.Security;
|
||
|
|
|
||
|
|
public record EncryptedValue(DekId DekId, byte[] Value);
|
||
|
|
|
||
|
|
|