diff --git a/internal/model/user.go b/internal/model/user.go new file mode 100644 index 0000000..1b9e325 --- /dev/null +++ b/internal/model/user.go @@ -0,0 +1,7 @@ +package model + +type User struct { + ID uint32 + FirstName string `json: "firstName"` + Email string `json: "email"` +}