/app/domain/user.go

http://github.com/sut-go/gon · Go · 8 lines · 7 code · 1 blank · 0 comment · 0 complexity · d443a679a7bc57544adc4739c751f94f MD5 · raw file

  1. package user
  2. type User struct {
  3. Id int "id"
  4. Name string
  5. Password string
  6. Email string
  7. }