Advertisement
erkayes935

customer_model.go

Dec 25th, 2024
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.19 KB | Source Code | 0 0
  1. package model
  2.  
  3. type Customer struct {
  4.     Id          string `json:"id"`
  5.     Name        string `json:"name"`
  6.     PhoneNumber string `json:"phonenumber"`
  7.     Address     string `json:"address"`
  8. }
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement