1
0
Fork 0
spacetraders/golang/pkg/model/trade_good.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"`
}