Files
2015-03-03 10:34:40 +02:00

4 lines
114 B
TypeScript

export class Person {
constructor(public name: string, public age: number, public salary: number) {
}
}