maximo tejeda 3888c47d17
Some checks failed
dev test / test (push) Failing after 8s
dev test / vulnCheck (push) Has been skipped
dev test / Ci-Lint (push) Has been skipped
Restructured workflow added
2024-12-03 22:09:27 -04:00

18 lines
490 B
Go

package domain
type History struct {
ID int64 `json:"id"`
Institution Institution `json:"institution"`
Compra float64 `json:"compra,omitempty"`
Venta float64 `json:"venta,omitempty"`
Parser string `json:"parser,omitempty"`
Parsed string `json:"parsed,omitempty"`
}
type Institution struct {
ID int64 `json:"id"`
Name string `json:"name"`
ShortName string `json:"short_name"`
Created int64 `json:"created"`
}