market_account.go 127 B

1234567891011
  1. package sentio
  2. type MarketAccount interface {
  3. GetId() string
  4. GetName() string
  5. GetCash() float64
  6. GetEquity() float64
  7. }