7 lines
86 B
TypeScript
Raw Normal View History

// #docregion
export class Hero {
id: number;
name: string;
isSecret = false;
}