11 lines
196 B
Go

package domain
type History struct {
ID int64 `json:""`
Name string `json:""`
Compra float64 `json:""`
Venta float64 `json:""`
Parser string `json:""`
Parsed int64 `json:""`
}