Skip to content

Instantly share code, notes, and snippets.

@flavioribeirojr
Last active August 16, 2017 03:12
Show Gist options
  • Save flavioribeirojr/5872a8fe60b951f68694752f8518a24f to your computer and use it in GitHub Desktop.
Save flavioribeirojr/5872a8fe60b951f68694752f8518a24f to your computer and use it in GitHub Desktop.
import { Fabricante } from './fabricante';
export class Carro {
constructor(
public id: number,
public modelo: string,
public fabricante: Fabricante,
public ano: Date,
public tipo_motor: string,
public quilometragem: number,
public preco: number,
public tipo_direcao: string,
public consumo: number
) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment