// CreateOrderResponse.ts
export class ErrorResponse {
  respCode: string;
  respMsg: string;

  constructor(respCode: string, respMsg: string) {
    this.respCode = respCode;
    this.respMsg = respMsg;
  }

  
}
