platform/packages/mongo/lib/model.dart
Tobe O 567ddd3897 Add 'packages/mongo/' from commit '6acfbc02d95d94bf1020ade556e372e8a60794af'
git-subtree-dir: packages/mongo
git-subtree-mainline: 4ab233c5b6
git-subtree-split: 6acfbc02d9
2020-02-15 18:43:58 -05:00

14 lines
332 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;
}