1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-04-02 22:25:35 +02:00
mailpit/data/mailbox.go

19 lines
298 B
Go
Raw Normal View History

2022-07-29 23:23:08 +12:00
package data
import "time"
// MailboxSummary struct
type MailboxSummary struct {
Name string
Slug string
Total int
Unread int
LastMessage time.Time
}
// WebsocketNotification struct for responses
type WebsocketNotification struct {
Type string
Data interface{}
}