dreampad/lib/app/modules/home/models/knowledge_point_model.dart
2023-11-28 10:45:09 +08:00

18 lines
234 B
Dart

class KnowledgePoint {
int? id;
double? top;
double? left;
double? right;
String? title;
bool? leared;
KnowledgePoint({
this.id,
this.top,
this.left,
this.right,
this.title,
this.leared,
});
}