7 lines
111 B
Go
7 lines
111 B
Go
package model
|
|
|
|
type Fuel struct {
|
|
Capacity int `json:"capacity"`
|
|
//Consummed
|
|
Current int `json:"current"`
|
|
}
|