15 lines
443 B
Go
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"`
|
|
}
|