18 lines
393 B
Java
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;
|
|
}
|
|
}
|