github.com/EngineerKamesh/gofullstack@v0.0.0-20180609171605-d41341d7d4ee/volume3/section1/intermediate/model/car.go (about)

     1  package model
     2  
     3  type Car struct {
     4  	ModelName    string
     5  	Color        string
     6  	Manufacturer string
     7  }