2016-04-14 16:28:28 -07:00

7 lines
75 B
Dart

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