platform/lib/model.dart
2017-02-12 20:38:24 -05:00

14 lines
No EOL
331 B
Dart

library angel_mongo.model;
/// Use the `Model` class defined in `package:angel_framework/common.dart` instead.
@deprecated
class Model {
/// This instance's ID.
String id;
/// The time at which this instance was created.
DateTime createdAt;
/// The time at which this instance was last updated.
DateTime updatedAt;
}