Remove unused model structs

This commit is contained in:
Alfred Kamanda 2025-03-10 14:03:30 +03:00
parent 52e1be1104
commit a04f7ee66c
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703
2 changed files with 0 additions and 17 deletions

View File

@ -1,10 +0,0 @@
package models
type Pool struct {
PoolName string `json:"poolName"`
PoolSymbol string `json:"poolSymbol"`
PoolContractAddress string `json:"poolContractAddress"`
LimiterAddress string `json:"limiterAddress"`
VoucherRegistry string `json:"voucherRegistry"`
}

View File

@ -8,10 +8,3 @@ type VoucherDataResult struct {
TokenCommodity string `json:"tokenCommodity"`
TokenLocation string `json:"tokenLocation"`
}
type SwappableVoucher struct {
ContractAddress string `json:"contractAddress"`
TokenSymbol string `json:"tokenSymbol"`
TokenDecimals string `json:"tokenDecimals"`
Balance string `json:"balance"`
}