/** @description This model represents contact information regarding dangerous goods */
export class DangerousGoodsContact {
  /** @description The name associated with dangerous goods contact. */
  name?: string;
  /** @description The phone number associated with dangerous goods contact. */
  phone?: string;
}
