10 lines
199 B
Dart
10 lines
199 B
Dart
library angel_framework.test.common;
|
|
|
|
import 'package:angel_framework/src/defs.dart';
|
|
|
|
class Todo extends MemoryModel {
|
|
String text;
|
|
String over;
|
|
|
|
Todo({String this.text, String this.over});
|
|
}
|