Files
bh_go_models/models/profile.go
Frederick Holland dad52efdc5 Added profile
2025-10-18 11:49:09 +11:00

9 lines
197 B
Go

package models
type Profile struct {
Id string `gorm:"primaryKey" json:"id"`
Firstname string `json:"firstname"`
Lastname string `json:"lastname"`
Username string `json:"username"`
}