platform/lib/src/annotations.dart
2017-06-18 00:19:05 -04:00

6 lines
No EOL
100 B
Dart

class ORM {
final String tableName;
const ORM([this.tableName]);
}
const ORM orm = const ORM();