All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.modelmapper.flattening.example2.PersonDTO Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package org.modelmapper.flattening.example2;

public class PersonDTO {
  String city;
  private String street;

  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 - 2024 Weber Informatics LLC | Privacy Policy