forked from urdt/ussd
7 lines
165 B
Go
7 lines
165 B
Go
|
package models
|
||
|
|
||
|
// VoucherHolding represents a single voucher holding
|
||
|
type VoucherHolding struct {
|
||
|
Symbol string `json:"symbol"`
|
||
|
Address string `json:"address"`
|
||
|
}
|