commento/api/email.go

15 lines
262 B
Go
Raw Normal View History

2019-02-19 00:23:44 +08:00
package main
import (
"time"
)
type email struct {
Email string
UnsubscribeSecretHex string
LastEmailNotificationDate time.Time
PendingEmails int
SendReplyNotifications bool
SendModeratorNotifications bool
}