export interface IEncConfigResponse { cryptTxt: string; encryKey: string; d: string; x: string; y: string; } export class TEncConfigResponse implements IEncConfigResponse { cryptTxt: string = ""; encryKey: string = ""; d: string = ""; x: string = ""; y: string = ""; }