export default abstract class Payload {
    code: string;
    abstract serialize(): string;
    abstract deserialize(ss: any): void;
}
