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; } }