9 lines
213 B
C#
9 lines
213 B
C#
|
using JacobTechEncryption.Enums;
|
||
|
|
||
|
namespace Luski.net.Structures;
|
||
|
|
||
|
public class LocalKeyInfo
|
||
|
{
|
||
|
public string Key { get; init; } = default!;
|
||
|
public EncryptionType EncryptionType { get; init; } = default!;
|
||
|
}
|