Last active
August 16, 2017 03:12
-
-
Save flavioribeirojr/5872a8fe60b951f68694752f8518a24f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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