Adds User struct

This commit is contained in:
Dennis Schoepf 2024-04-28 20:05:53 +02:00
parent 98edc52114
commit 800c839b53

7
internal/model/user.go Normal file
View file

@ -0,0 +1,7 @@
package model
type User struct {
ID uint32
FirstName string `json: "firstName"`
Email string `json: "email"`
}