// CSE 142 Labs
// A class to represent secretaries.

public class Secretary extends Employee {
    public void takeDictation(String text) {
        System.out.println("Taking dictation of text: " + text);
    }
}
