class ApiUrls { static const String baseUrl = 'https://cheminova-api-2.onrender.com/api/'; static const String loginUrl = 'salescoordinator/login'; static const String profileUrl = 'my-profile'; static const String markAttendanceUrl = 'v1/markattendance/salescoordinator'; static const String getPdUrl = 'kyc/get-pd'; static const String createCollectKycUrl = '${baseUrl}kyc/create'; static const String getProfileUrl = '${baseUrl}salescoordinator/my-profile'; static const String changePasswordUrl = '${baseUrl}salescoordinator/password/update'; static const String forgotPasswordUrl = '${baseUrl}salescoordinator/forgot-password'; static const String leaveAttendance = '${baseUrl}v1/markleave/salescoordinator'; static const String logOutUrl = '${baseUrl}salescoordinator/logout'; static const String rejectedApplication = '${baseUrl}kyc/getAllrejected'; static const String notificationUrl = '${baseUrl}/get-notification-sc'; static const String fcmUrl = '${baseUrl}kyc/save-fcm-sc'; static const String getProducts = '${baseUrl}product/getAll/user'; static const String getPdRdUrl = '${baseUrl}inventory/distributors-SC/'; static const String submitProductUrl = '${baseUrl}inventory/add-SC'; static const String selectTaskUrl = '${baseUrl}task/tasks'; static const String dailyTaskUrl = '${baseUrl}task/tasks/'; static const String kycSelectTaskUrl = '${baseUrl}task/task/type/Collect KYC'; static const String updateTaskInventoryUrl = '${baseUrl}task/update-task-status/'; static const String getProductsManual = '${baseUrl}productmanual/getall'; static const String salesTaskUrl = '${baseUrl}product/getAll/user/?category=Bottle'; static const String postSalesTaskUrl = '${baseUrl}sales/add-SC'; }