summaryrefslogtreecommitdiff
path: root/golang/pkg/model/fuel.go
blob: 395fbdbc0599314244a418914d1b94f769684c84 (plain)
1
2
3
4
5
6
7
package model

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