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