/** @description This model represents the amount of the dangerous goods */
export class DangerousAmountDetails {
  /** @description The amount of dangerous goods */
  amount?: number;
  /** @description The unit of dangerous goods */
  unit?: string;
}
