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

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

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

public class Customer {
  private String name;

  public Customer(String name) {
    this.name = name;
  }

  public String getName() {
    return name;
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy