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

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

There is a newer version: 3.2.1
Show newest version
package org.modelmapper.projection.example1;

public class Address {
  private String street;

  public String getStreet() {
    return street;
  }

  public void setStreet(String street) {
    this.street = street;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy