18 lines
234 B
Dart
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,
|
||
|
});
|
||
|
}
|