From bff81eb6e39d11c4ab568a73048ce5c949d99f3b Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 17 Apr 2026 02:59:22 +0000 Subject: [PATCH] Add basic lead type --- platform/types/lead.go | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 platform/types/lead.go diff --git a/platform/types/lead.go b/platform/types/lead.go new file mode 100644 index 00000000..65197cb9 --- /dev/null +++ b/platform/types/lead.go @@ -0,0 +1,6 @@ +package types + +type Lead struct { + ID int32 `json:"id"` + SiteID int32 `json:"site_id"` +}