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

org.modelmapper.projection.example2.Address Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy