11 lines
262 B
C#
11 lines
262 B
C#
|
using JacobTechEncryption.Enums;
|
||
|
|
||
|
namespace Luski.net.Structures;
|
||
|
|
||
|
public class PublicKeyInfo
|
||
|
{
|
||
|
public long Id { get; init; }
|
||
|
public byte[] Data { get; init; }
|
||
|
public long Owner { get; init; }
|
||
|
public EncryptionType EncryptionType { get; init; }
|
||
|
}
|