Files
2026-06-14 17:50:35 +02:00

7 lines
126 B
Go

package models
type Contact struct {
ID int `json:"id" gorm:"primaryKey"`
Name string `json:"name" gorm:"not null"`
}