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

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

package org.modelmapper.projection.example1;

public class Customer {
  private String name;

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy