2016-06-27 00:20:42 +00:00
|
|
|
library angel_framework.test.common;
|
|
|
|
|
2016-09-15 19:53:01 +00:00
|
|
|
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});
|
|
|
|
}
|