Skip to content

Instantly share code, notes, and snippets.

@krishbhanushali
Created April 4, 2019 05:00
Show Gist options
  • Save krishbhanushali/20ee830f1c16afc162d96f3f6dc8c658 to your computer and use it in GitHub Desktop.
Save krishbhanushali/20ee830f1c16afc162d96f3f6dc8c658 to your computer and use it in GitHub Desktop.
Entry model
package main
type entry struct {
ID int `json:"id,omitempty"`
FirstName string `json:"first_name,omitempty"`
LastName string `json:"last_name,omitempty"`
EmailAddress string `json:"email_address,omitempty"`
PhoneNumber string `json:"phone_number,omitempty"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment