Files
DekaBot/src/main/java/storage/Trade.java
2017-07-13 22:46:30 +02:00

18 lines
393 B
Java

package storage;
public class Trade {
public double price;
public double volume;
public int time;
public String buyorsell;
public String marketorlimit;
public Trade(double price, double volume, int time, String buyorsell, String marketorlimit){
this.price = price;
this.volume = volume;
this.time = time;
this.buyorsell = buyorsell;
this.marketorlimit = marketorlimit;
}
}