platform/test/common.dart

9 lines
130 B
Dart
Raw Normal View History

2016-06-27 00:20:42 +00:00
library angel_framework.test.common;
class Todo {
String text;
String over;
Todo({String this.text, String this.over});
}