10 lines
201 B
Go
10 lines
201 B
Go
|
package vat_fold
|
||
|
|
||
|
type VatFoldModel struct {
|
||
|
Ilk string
|
||
|
Urn string
|
||
|
Rate string
|
||
|
TransactionIndex uint `db:"tx_idx"`
|
||
|
Raw []byte `db:"raw_log"`
|
||
|
}
|