library angel_framework.test.common;

class Todo {
  String text;
  String over;

  Todo({String this.text, String this.over});
}