RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
ItemHistory.java
1
package
com.osroyale.content.tradingpost;
2
28
29
public
class
ItemHistory {
30
private
final
int
quantity;
31
private
final
int
itemId;
32
private
final
int
price;
33
private
final
String seller;
34
private
final
String buyer;
35
36
public
ItemHistory(
int
quantity,
int
itemId,
int
price, String seller, String buyer) {
37
this.quantity = quantity;
38
this.itemId = itemId;
39
this.price = price;
40
this.seller = seller;
41
this.buyer = buyer;
42
}
43
44
public
int
getQuantity() {
45
return
quantity;
46
}
47
48
public
int
getItemId() {
49
return
itemId;
50
}
51
52
public
int
getPrice() {
53
return
price;
54
}
55
56
public
String getSeller() {
57
return
seller;
58
}
59
60
public
String getBuyer() {
61
return
buyer;
62
}
63
}