org.modelmapper.projection.example2.Address Maven / Gradle / Ivy
package org.modelmapper.projection.example2;
public class Address {
private String street;
private String city;
public String getStreet() {
return street;
}
public void setStreet(String street) {
this.street = street;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
}