github.com/EngineerKamesh/gofullstack@v0.0.0-20180609171605-d41341d7d4ee/volume4/section2/gopherface/models/gopher.go (about)

     1  package models
     2  
     3  type Gopher struct {
     4  	UUID             string `json:"uuid" bson:"uuid"`
     5  	Username         string `json:"username" bson:"username"`
     6  	FirstName        string `json:"firstName" bson:"firstName"`
     7  	LastName         string `json:"lastName" bson:"lastName"`
     8  	Location         string `json:"location" bson:"location"`
     9  	ProfileImagePath string `json:"profileImagePath" bson:"profileImagePath"`
    10  }