export interface EnquiryDetail {
    id: number;
    category: string;
    category_label: string;
    first_name: string;
    last_name: string;
    email: string;
    phone: string;
    state: string;
    price_wanted: string;
    plate_combination: string | null;
    year: string | null;
    make_id: number | null;
    other_make: string | null;
    make_name: string | null;
    model: string | null;
    odometer_km: number | null;
    item_description: string | null;
    uploads: Array<{
        upload_id: number;
        path: string | null | undefined;
        name: string | null | undefined;
        type: string | null | undefined;
        url?: string;
    }>;
}
