go-broker-test/internal/model/account_stats.go

11 lines
270 B
Go
Raw Permalink Normal View History

2025-05-07 00:25:34 +03:00
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"`
}