package models import "time" type Consent struct { FirstName string `json:"first_name"` LastName string `json:"last_name"` Email string `json:"email"` UpdatedAt time.Time `json:"updated_at"` CreatedAt time.Time `json:"created_at"` ConsentType string `json:"consent_type"` UserID int `json:"id"` }