4 lines
183 B
C#
4 lines
183 B
C#
|
|
namespace IdentityShroud.Core.Contracts;
|
||
|
|
|
||
|
|
// Contains an encryption key and associated relevant data
|
||
|
|
public record EncryptionKey(string Id, bool Active, string Algorithm, byte[] Key);
|