@golemio/pid
Version:
Golemio PID Module
11 lines (10 loc) • 499 B
TypeScript
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { IVehicleTypeDto } from "./interfaces/IVehicleTypeDto";
export declare class VehicleTypeDto extends Model<IVehicleTypeDto> implements IVehicleTypeDto {
description_cs: string;
description_en: string;
id: number;
static attributeModel: ModelAttributes<VehicleTypeDto>;
static jsonSchemaModel: JSONSchemaType<IVehicleTypeDto[]>;
}