platform/lib/model.dart

13 lines
286 B
Dart
Raw Normal View History

2016-09-21 04:26:22 +00:00
library angel_mongo.model;
/// A data type that can be serialized to MongoDB.
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;
}