This repository has been archived on 2024-10-18. You can view files and clone it, but cannot push or open issues or pull requests.
ftc_patient_app/lib/models/holiday_model.dart

21 lines
649 B
Dart

class HolidayModel{
String carriedOver = "";
String holidayEntitlement = "";
String holidayAllowance = "";
String remainingHolidays = "";
String timeLeftBeforeYearEnd = "";
HolidayModel({
required this.carriedOver,
required this.holidayEntitlement,
required this.holidayAllowance,
required this.remainingHolidays,
required this.timeLeftBeforeYearEnd,
});
@override
String toString() {
return 'HolidayModel{carriedOver: $carriedOver, holidayEntitlement: $holidayEntitlement, holidayAllowance: $holidayAllowance, remainingHolidays: $remainingHolidays, timeLeftBeforeYearEnd: $timeLeftBeforeYearEnd}';
}
}