library angel3_mongo.model;

/// Use the `Model` class defined in `package:angel_framework/common.dart` instead.
@deprecated
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;
}