platform/packages/mongo/lib/model.dart
2021-06-18 19:10:38 +08:00

14 lines
336 B
Dart

library angel3_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;
}