2023-02-01 08:03:05 +00:00
|
|
|
import 'package:unit2/model/profile/basic_info.dart';
|
|
|
|
import 'package:unit2/model/profile/basic_information/primary-information.dart';
|
2023-02-07 01:29:38 +00:00
|
|
|
import 'package:unit2/model/profile/educational_background.dart';
|
2023-02-03 03:34:09 +00:00
|
|
|
import 'package:unit2/model/profile/eligibility.dart';
|
|
|
|
import 'package:unit2/model/profile/learning_development.dart';
|
|
|
|
import 'package:unit2/model/profile/references.dart';
|
2023-02-07 01:29:38 +00:00
|
|
|
import 'package:unit2/model/profile/work_history.dart';
|
2023-02-01 08:03:05 +00:00
|
|
|
|
|
|
|
class ProfileInformation{
|
|
|
|
BasicInfo basicInfo;
|
2023-02-03 03:34:09 +00:00
|
|
|
List<EligibityCert> eligibilities;
|
|
|
|
List<PersonalReference> references;
|
|
|
|
List<LearningDevelopement> learningsAndDevelopment;
|
2023-02-07 01:29:38 +00:00
|
|
|
List<EducationalBackground> educationalBackgrounds;
|
|
|
|
List<WorkHistory>workExperiences;
|
|
|
|
ProfileInformation({required this.workExperiences, required this.basicInfo,required this.eligibilities,required this.references, required this.learningsAndDevelopment,required this.educationalBackgrounds});
|
2023-02-01 08:03:05 +00:00
|
|
|
}
|