class Goal { int? id; int? occupationId; int? age; String? title; List? contents; Goal({ this.id, this.occupationId, this.age, this.title, this.contents, }); } class GoalContent { String? title; String? content; GoalContent({ this.title, this.content, }); }