package core // Email represents an email address of interest. type Email struct { Address string `json:"address"` Provider string `json:"provider"` Verified bool `json:"verified"` Breached bool `json:"breached"` }