593840ec28
modified: main_dc/yalarba/api_tp/internal/models/contacts.go modifay
22 lines
439 B
Go
22 lines
439 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Contact struct {
|
|
ID uint `json:"id" gorm:"primarykey"`
|
|
UserId uint
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
DeletedAt gorm.DeletedAt `json:"deleted_at,omitempty" gorm:"index"`
|
|
|
|
FirstName string
|
|
LastName string
|
|
PhoneNumbers map[string]string
|
|
SocialLinks map[string]string
|
|
Emails map[string]string
|
|
}
|