platform/lib/src/annotations.dart

6 lines
100 B
Dart
Raw Normal View History

2017-06-18 04:19:05 +00:00
class ORM {
final String tableName;
const ORM([this.tableName]);
}
const ORM orm = const ORM();