freed/internal/model/user.go
2024-04-28 20:05:53 +02:00

7 lines
126 B
Go

package model
type User struct {
ID uint32
FirstName string `json: "firstName"`
Email string `json: "email"`
}