Files
spring-boot-rest/spring-boot-properties/src/main/java/com/baeldung/configurationproperties/Employee.java
2019-08-24 18:58:47 -04:00

31 lines
529 B
Java

package com.baeldung.configurationproperties;
public class Employee {
private String name;
private double salary;
public Employee(String name, double salary) {
super();
this.name = name;
this.salary = salary;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public double getSalary() {
return salary;
}
public void setSalary(double salary) {
this.salary = salary;
}
}