platform/lib/angel_model.dart
2017-07-11 16:46:12 -04:00

8 lines
No EOL
194 B
Dart

/// Represents arbitrary data, with an associated ID and timestamps.
class Model {
String id;
DateTime createdAt;
DateTime updatedAt;
Model({this.id, this.createdAt, this.updatedAt});
}