2018-10-03 12:08:01 +00:00
|
|
|
package vat_fold
|
|
|
|
|
|
|
|
type VatFoldModel struct {
|
|
|
|
Ilk string
|
|
|
|
Urn string
|
|
|
|
Rate string
|
2018-10-22 21:18:40 +00:00
|
|
|
LogIndex uint `db:"log_idx"`
|
2018-10-03 12:08:01 +00:00
|
|
|
TransactionIndex uint `db:"tx_idx"`
|
|
|
|
Raw []byte `db:"raw_log"`
|
|
|
|
}
|