feat: add contact model

This commit is contained in:
2025-11-01 19:30:14 -03:00
parent 1f4711edb6
commit ffdaa22aa3

View File

@@ -0,0 +1,8 @@
package models
type Contact struct {
ID int `json:"id" db:"id"`
Name string `json:"name" db:"name"`
Company string `json:"company" db:"company"`
Phone string `json:"phone" db:"phone"`
}