Add basic lead type

This commit is contained in:
Eli Ribble 2026-04-17 02:59:22 +00:00
parent 617631063f
commit bff81eb6e3
No known key found for this signature in database

6
platform/types/lead.go Normal file
View file

@ -0,0 +1,6 @@
package types
type Lead struct {
ID int32 `json:"id"`
SiteID int32 `json:"site_id"`
}