15 lines
262 B
Go
15 lines
262 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type email struct {
|
||
|
Email string
|
||
|
UnsubscribeSecretHex string
|
||
|
LastEmailNotificationDate time.Time
|
||
|
PendingEmails int
|
||
|
SendReplyNotifications bool
|
||
|
SendModeratorNotifications bool
|
||
|
}
|