blob: 602f6671366d1ad0f3d86ca40214ca29720ac839 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package model
type TradeGood struct {
Activity string `json:"activity"`
PurchasePrice int `json:"purchasePrice"`
SellPrice int `json:"sellPrice"`
Supply string `json:"supply"`
Symbol string `json:"symbol"`
TradeVolume int `json:"tradeVolume"`
Type string `json:"type"`
}
|