platform/lib/common.dart
thosakwe 07025403f4 55
2017-02-12 19:38:33 -05: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});
}