export interface Serialize_Interface {
     serialize(data: any): string;
     unSerialize(data: string): any;
}
