Luski.Net/Luski.net/Structures/PublicKeyInfo.cs
JacobTech 9f641e7429 Public Servers.
Added a bunch of API calls to use in public servers.
2023-08-21 10:58:17 -04:00

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