1
0
Fork 0
spacetraders/golang/pkg/model/fuel.go

7 lines
111 B
Go

package model
type Fuel struct {
Capacity int `json:"capacity"`
//Consummed
Current int `json:"current"`
}