@alba-cars/common-modules
Version:
A package containing DTOs, validation classes and common modules and interfaces for Alba Cars
18 lines (17 loc) • 505 B
TypeScript
import { BaseModel } from "./Base";
import { Vehicle } from "./Vehicle";
import { VehicleBodyType } from "./VehicleBodyType";
import { VehicleMake } from "./VehicleMake";
export declare class VehicleModel extends BaseModel {
name: string;
make: VehicleMake;
year: number;
slug: string;
metaTitle?: string;
metaDescription?: string;
metaKeywords?: string;
vehicles?: Vehicle[];
image?: string;
description?: string;
bodyType: VehicleBodyType;
}