11 lines
322 B
Go
11 lines
322 B
Go
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"`
|
|
}
|