UNPKG

nodram

Version:
18 lines (13 loc) 302 B
/** * Created by EdgeTech on 2/11/2016. */ export class Vehicle{ private model: string; private make: string; private year: number; constructor(data){ this.model = data["model"]; this.make = data["make"]; this.year = data["year"]; } }