mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-14 14:02:49 +00:00
13 lines
244 B
Java
13 lines
244 B
Java
|
package me.impy.aegis;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
import me.impy.aegis.crypto.KeyInfo;
|
||
|
|
||
|
public class KeyProfile implements Serializable {
|
||
|
public String Name;
|
||
|
public String Icon;
|
||
|
public String Code;
|
||
|
public KeyInfo KeyInfo;
|
||
|
}
|