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