2023-02-08 03:07:30 +00:00
|
|
|
import 'package:unit2/model/profile/other_information/non_acedimic_recognition.dart';
|
2023-02-07 06:17:49 +00:00
|
|
|
import 'package:unit2/model/profile/other_information/organization_memberships.dart';
|
|
|
|
import 'package:unit2/model/profile/other_information/skills_and_hobbies.dart';
|
|
|
|
|
|
|
|
class OtherInformation{
|
|
|
|
List<SkillsHobbies> skillsAndHobbies;
|
|
|
|
List<OrganizationMembership>orgMemberships;
|
2023-02-08 03:07:30 +00:00
|
|
|
List<NonAcademicRecognition> nonAcademicRecognition;
|
|
|
|
OtherInformation({required this.skillsAndHobbies, required this.orgMemberships, required this.nonAcademicRecognition});
|
2023-02-07 06:17:49 +00:00
|
|
|
}
|