From 800c839b53af0ac8d841b65db69978847c9bf771 Mon Sep 17 00:00:00 2001 From: Dennis Schoepf Date: Sun, 28 Apr 2024 20:05:53 +0200 Subject: [PATCH] Adds User struct --- internal/model/user.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 internal/model/user.go 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"` +}