![JAR search and dependency download from the Maven repository](/logo.png)
org.modelmapper.projection.example2.OrderDTO Maven / Gradle / Ivy
package org.modelmapper.projection.example2;
public class OrderDTO {
private String street;
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy