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

com.beimin.eveapi.model.shared.Standing Maven / Gradle / Ivy

There is a newer version: 7.0.4
Show newest version
package com.beimin.eveapi.model.shared;

public class Standing {
	private int fromID;
	private String fromName;
	private double standing;

	public void setFromID(int fromID) {
		this.fromID = fromID;
	}

	public void setFromName(String fromName) {
		this.fromName = fromName;
	}

	public void setStanding(double standing) {
		this.standing = standing;
	}

	public int getFromID() {
		return this.fromID;
	}

	public String getFromName() {
		return this.fromName;
	}

	public double getStanding() {
		return this.standing;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy