mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-02-12 16:12:44 +00:00
11 lines
343 B
Go
11 lines
343 B
Go
package model
|
|
|
|
type CampaignResultView struct {
|
|
Recipients int64 `json:"recipients"`
|
|
EmailsSent int64 `json:"emailsSent"`
|
|
TrackingPixelLoaded int64 `json:"trackingPixelLoaded"`
|
|
WebsiteLoaded int64 `json:"clickedLink"`
|
|
SubmittedData int64 `json:"submittedData"`
|
|
Reported int64 `json:"reported"`
|
|
}
|