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