import 'package:unit2/model/profile/other_information/non_acedimic_recognition.dart'; import 'package:unit2/model/profile/other_information/organization_memberships.dart'; import 'package:unit2/model/profile/other_information/skills_and_hobbies.dart'; class OtherInformation{ List skillsAndHobbies; ListorgMemberships; List nonAcademicRecognition; OtherInformation({required this.skillsAndHobbies, required this.orgMemberships, required this.nonAcademicRecognition}); }