mirror of
https://github.com/axllent/mailpit.git
synced 2025-01-04 00:15:54 +02:00
19 lines
298 B
Go
19 lines
298 B
Go
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{}
|
|
}
|