Added profile

This commit is contained in:
Frederick Holland
2025-10-18 11:49:09 +11:00
parent 69b04a894d
commit dad52efdc5

8
models/profile.go Normal file
View File

@@ -0,0 +1,8 @@
package models
type Profile struct {
Id string `gorm:"primaryKey" json:"id"`
Firstname string `json:"firstname"`
Lastname string `json:"lastname"`
Username string `json:"username"`
}