mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
11 lines
158 B
Java
11 lines
158 B
Java
/**
|
|
* Underlying data type of the ORM class and functions.
|
|
*/
|
|
public class Employee {
|
|
Employee(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
String name;
|
|
}
|