class VacationRequest { final String employeeId; final DateTime startDate; final DateTime endDate; final String reason; final int type; VacationRequest({ required this.employeeId, required this.startDate, required this.endDate, required this.reason, required this.type, }); }