19 lines
291 B
Go
19 lines
291 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type BKMRecords struct {
|
|
BKMRecords []BKMRecord
|
|
}
|
|
type BKMRecord struct {
|
|
Date time.Time
|
|
NumberOfTransactions Transaction
|
|
VolumeOfTransactions Transaction
|
|
}
|
|
|
|
type Transaction struct {
|
|
Purchase float64
|
|
Cash float64
|
|
Total float64
|
|
}
|