platform/test/common.dart
2016-06-26 20:20:42 -04:00

8 lines
130 B
Dart

library angel_framework.test.common;
class Todo {
String text;
String over;
Todo({String this.text, String this.over});
}