From ffdaa22aa3a19385ea493c436c5e278f296cce26 Mon Sep 17 00:00:00 2001 From: Gabriel De Los Rios Date: Sat, 1 Nov 2025 19:30:14 -0300 Subject: [PATCH] feat: add contact model --- internal/models/contact.go | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 internal/models/contact.go diff --git a/internal/models/contact.go b/internal/models/contact.go new file mode 100644 index 0000000..d5496ca --- /dev/null +++ b/internal/models/contact.go @@ -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"` +}