9 lines
		
	
	
		
			160 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			9 lines
		
	
	
		
			160 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
|  | // #docregion
 | ||
|  | export class Hero{ | ||
|  |   constructor( | ||
|  |     public id: number, | ||
|  |     public name:string, | ||
|  |     public description?:string, | ||
|  |     public phone?:string) { | ||
|  |   } | ||
|  | } |