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';
|
2023-02-08 08:06:27 +00:00
|
|
|
import 'package:unit2/model/profile/family_backround.dart';
|
2023-02-03 03:34:09 +00:00
|
|
|
import 'package:unit2/model/profile/learning_development.dart';
|
2023-02-07 06:17:49 +00:00
|
|
|
import 'package:unit2/model/profile/other_info.dart';
|
2023-02-03 03:34:09 +00:00
|
|
|
import 'package:unit2/model/profile/references.dart';
|
2023-02-07 02:37:15 +00:00
|
|
|
import 'package:unit2/model/profile/voluntary_works.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{
|
2023-03-02 00:40:47 +00:00
|
|
|
final BasicInfo basicInfo;
|
|
|
|
// OtherInformation otherInformation;
|
|
|
|
// List<EligibityCert> eligibilities;
|
|
|
|
// List<PersonalReference> references;
|
|
|
|
// List<LearningDevelopement> learningsAndDevelopment;
|
|
|
|
// List<EducationalBackground> educationalBackgrounds;
|
|
|
|
// List<FamilyBackground> families;
|
|
|
|
// List<WorkHistory>workExperiences;
|
|
|
|
// List<VoluntaryWork> voluntaryWorks;
|
|
|
|
ProfileInformation({required this.basicInfo});
|
2023-02-01 08:03:05 +00:00
|
|
|
}
|