2016-04-27 11:28:22 -07:00
|
|
|
let nextId = 1;
|
|
|
|
|
2015-11-28 20:43:09 -08:00
|
|
|
export class Hero {
|
2016-04-27 11:28:22 -07:00
|
|
|
id: number;
|
2015-11-30 14:13:24 -08:00
|
|
|
constructor(
|
2016-04-27 11:28:22 -07:00
|
|
|
public name: string,
|
|
|
|
public power?: string) {
|
2015-11-30 14:13:24 -08:00
|
|
|
this.id = nextId++;
|
|
|
|
}
|
2015-11-28 20:43:09 -08:00
|
|
|
}
|