6 lines
145 B
C#
6 lines
145 B
C#
|
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
|
||
|
|
namespace IdentityShroud.Core.Contracts;
|
||
|
|
|
||
|
|
[Owned]
|
||
|
|
public record EncryptedValue(string KeyId, byte[] Value);
|