platform/lib/common.dart

8 lines
194 B
Dart
Raw Normal View History

2017-02-13 00:38:33 +00:00
/// Represents arbitrary data, with an associated ID and timestamps.
class Model {
String id;
DateTime createdAt;
DateTime updatedAt;
Model({this.id, this.createdAt, this.updatedAt});
}