commento/api/email.go
Adhityaa Chandrasekar 8a7348ed6a email.go: run go fmt
2019-02-18 17:38:58 -05:00

15 lines
443 B
Go

package main
import (
"time"
)
type email struct {
Email string `json:"email"`
UnsubscribeSecretHex string `json:"unsubscribeSecretHex"`
LastEmailNotificationDate time.Time `json:"lastEmailNotificationDate"`
PendingEmails int `json:"-"`
SendReplyNotifications bool `json:"sendReplyNotifications"`
SendModeratorNotifications bool `json:"sendModeratorNotifications"`
}