9 lines
198 B
Go
9 lines
198 B
Go
|
package mutations
|
||
|
|
||
|
import "git.lehouerou.net/laurent/sorare/types"
|
||
|
|
||
|
type AmountInput struct {
|
||
|
Amount string `json:"amount"`
|
||
|
Currency types.SupportedCurrency `json:"currency"`
|
||
|
}
|