Person <|-- Student Person <|-- Employee class Person{ <> +«property» Name: string +«property» Id: string* +GenerateLogin() string* } class Employee{ -hourlyPay: decimal +«property» Id: string +GenerateLogin() string } class Student{ -major: string +«property» Id: string +GenerateLogin() string }