import { TrailerTypeResponse } from '../models/trailer-type-response'; export interface TrailerMinimalResponse { id?: number; trailerNumber?: string | null; status?: number; owner?: string | null; trailerType?: TrailerTypeResponse; trailerMakeName?: string | null; model?: string | null; year?: number; }