platform/test/common.dart

11 lines
199 B
Dart
Raw Normal View History

2016-06-27 00:20:42 +00:00
library angel_framework.test.common;
import 'package:angel_framework/src/defs.dart';
class Todo extends MemoryModel {
2016-06-27 00:20:42 +00:00
String text;
String over;
Todo({String this.text, String this.over});
}