mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-05-26 17:48:18 +02:00
10 lines
298 B
Go
10 lines
298 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"`
|
|
}
|