10 lines
213 B
Go
10 lines
213 B
Go
package vo
|
|
|
|
import "github.com/shopspring/decimal"
|
|
|
|
type TopUpCreationForm struct {
|
|
Tenement string `json:"tenement"`
|
|
Meter string `json:"meter"`
|
|
Amount decimal.Decimal `json:"amount"`
|
|
}
|