platform/lib/model.dart

15 lines
332 B
Dart
Raw Normal View History

2016-09-21 04:26:22 +00:00
library angel_mongo.model;
2017-02-13 01:38:24 +00:00
/// Use the `Model` class defined in `package:angel_framework/common.dart` instead.
@deprecated
2016-09-21 04:26:22 +00:00
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;
2018-10-18 22:58:03 +00:00
}