// #docregion pt1
import 'package:angular2/core.dart';
// #docregion hero-class-1
class Hero {
  final int id;
  String name;
  Hero(this.id, this.name);
}
// #enddocregion hero-class-1
@Component(
    selector: 'my-app',
    template: '''
      
{{title}}
      {{hero.name}} details!
      {{hero.id}}
      
        
        
      
'''
)
class AppComponent {
  String title = 'Tour of Heroes';
  // #docregion hero-property-1
  Hero hero = new Hero(1, 'Windstorm');
  // #enddocregion hero-property-1
}
// #enddocregion pt1