Minor refactoring (organizing in packages)

This commit is contained in:
Dennis Thiessen
2017-07-13 22:46:30 +02:00
parent e119a8c354
commit 0a50e8babb
11 changed files with 49 additions and 55 deletions

View File

@@ -0,0 +1,17 @@
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;
}
}