market_account.go 136 B

123456789
  1. package sentio
  2. type MarketAccount interface {
  3. GetId() string
  4. GetName() string
  5. Cash() (float64, error)
  6. Equity() (float64, error)
  7. }