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

enterprises.orbital.impl.evexmlapi.shared.Medal Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package enterprises.orbital.impl.evexmlapi.shared;

public abstract class Medal {
  private int    medalID;
  private String title;
  private String description;

  public int getMedalID() {
    return medalID;
  }

  public void setMedalID(int medalID) {
    this.medalID = medalID;
  }

  public String getTitle() {
    return title;
  }

  public void setTitle(String title) {
    this.title = title;
  }

  public String getDescription() {
    return description;
  }

  public void setDescription(String description) {
    this.description = description;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy