11 lines
270 B
Go
11 lines
270 B
Go
|
|
package model
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type AccountStats struct {
|
||
|
|
Account string `json:"account" db:"account"`
|
||
|
|
TradesCount int64 `json:"trades" db:"trades_count"`
|
||
|
|
Profit float64 `json:"profit" db:"profit"`
|
||
|
|
UpdatedAt time.Time `json:"-" db:"updated_at"`
|
||
|
|
}
|