# messages.py

class Messages:
    CATCHMENT_NOT_FOUND = "Catchment Potential not found"
    GROUP_NOT_FOUND = "No Catchment Potential found for the given group_id"
    SUCCESS = "Success"
    CATCHMENT_POTENTIAL_CREAT="Catchment Potential Created Successfully"
    CATCHMENT_ID_REQUIRED="Catchment Potential ID is required"
    CATCHMENT_UPDATE="Catchment Potential updated successfully"
    CATCHMENT_DELETED="Catchment Potential deleted successfully"
    CUSTOMER_CREAT="Customer Location Created Successfully"
    CUSTOMET_NOT_FOUND="Customer Location not found"
    CUSTOMER_GROUP_NOT_FOUND="No found for the given group_id"
    CUSTOMER_ID_REQUIRED="Customer Location ID is required"
    CUSTOMER_UPDATE="Customer Location updated successfully"
    CUSTOMER_DELETED="Customer Location deleted successfully"
    GROUP_NOT_FOUND="Group not found"
    GROUP_UPDATE="Group Updated Successfully"
    GROUP_CREAT="Group Created Successfully"
    GROUP_CATEGORY="Category stored and group updated"
    NETWORK_CREAT="Network Planning Created Successfully"
    NETWORK_NOT_FOUND = "Network with the given ID was not found."
    NETWORK_UPDATE = "Network updated successfully."
    SEGMENT_CREAT="Segment created successfully"
    SEGMENT_NOT_FOUND="User id not found"
    SEGMENT_UPDATE="Segment updated successfully"
    SEGMENT_DELETED="Segment deleted successfully"
    SIMULATION_CREAT="simulation created successfully"
    SIMULATION_NOT_FOUND="Simulation not found"
    SIMULATION_DELETED="Simulation deleted successfully"
    STOREFORMATE_CREAT="Store formate created successfully"
    STOREFORMATE_ID_REQUIRED="Store ID is required"
    USER_CREAT="User created successfully"
    USER_NOT_FOUND="User not found"
    INCORRECT_PASSWORD="Incorrect password"
    USER_ID_MISSING="User ID is missing in token"
    USER_LOGOUT="User logged out successfully"
    CURRENT_PASSORD_INCORRECT="Current password is incorrect"
    NEWPASSWORD_CONFIRMPASSWORD_NOT_MATCH="New password and confirm password do not match"
    PASSWORD_UPDATED="Password updated successfully"
    OTP_SEND="OTP sent. Check your email."
    INVALID_OTP="Invalid or expired OTP"
    STUDENT_CREAT="student created successfully"
    STUDENT_NOT_FOUND="Student not found"
    GROUP_NOT_ASSIGNED="Group not assigned to this student"
    STUDENT_UPDATE="Student updated successfully"
    ANOTHER_STUDENT_LOGIN="Another student from your group is already logged in."
    STUDENT_ID_REQUIED="Student ID is required"
    STUDENT_NOT_LOGIN="Student is not logged in"
    STUDENT_LOGOUT="Student logged out successfully"
    PAYMENT_CREAT="Payment created successfully"

    
    