platform/angel_orm/lib/src/annotations.dart

12 lines
210 B
Dart
Raw Normal View History

2017-12-07 08:21:49 +00:00
const ORM orm = const ORM();
2017-06-18 04:19:05 +00:00
class ORM {
final String tableName;
const ORM([this.tableName]);
}
2017-12-07 08:21:49 +00:00
class CanJoin {
final Type type;
final String foreignKey;
const CanJoin(this.type, this.foreignKey);
}