dreampad/lib/app/models/goal_model.dart

26 lines
324 B
Dart
Raw Normal View History

2023-11-28 10:44:58 +08:00
class Goal {
int? id;
int? occupationId;
int? age;
String? title;
List<GoalContent>? contents;
Goal({
this.id,
this.occupationId,
this.age,
this.title,
this.contents,
});
}
class GoalContent {
String? title;
String? content;
GoalContent({
this.title,
this.content,
});
}