sheet-historical-data-conve.../models/exchangeRatesModel.go

15 lines
218 B
Go

package models
import "time"
type ExchangeRecords struct {
ExchangeRecords []ExchangeRecord
}
type ExchangeRecord struct {
Date time.Time
Tag string
FromCurrency float64
ToCurrency float64
}