1
mirror of https://gitlab.com/commento/commento.git synced 2025-06-28 22:55:39 -04:00
Files
commento/api/email.go
2019-10-25 01:10:44 -07:00

14 lines
394 B
Go

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