generated from PenaSide/GolangTemplate
8 lines
157 B
Go
8 lines
157 B
Go
package models
|
|
|
|
type ReplenishAccountWallet struct {
|
|
Cash float64 `json:"cash"`
|
|
Currency string `json:"currency"`
|
|
UserID string `json:"userId"`
|
|
}
|