org.modelmapper.projection.example1.Customer Maven / Gradle / Ivy
 The newest version!
        
        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 - 2025 Weber Informatics LLC | Privacy Policy