2016-03-16 19:56:56 -07:00

6 lines
74 B
Dart

class Hero {
final int id;
String name;
Hero(this.id, this.name);
}