7 lines
115 B
TypeScript
7 lines
115 B
TypeScript
export type Van = {
|
|
id: number;
|
|
placa: string;
|
|
modelo: string;
|
|
numPassageiros: number;
|
|
alugado: boolean
|
|
} |