15 lines
218 B
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
|
||
|
}
|