mirror of
https://github.com/axllent/mailpit.git
synced 2025-04-02 22:25:35 +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{}
|
||
|
}
|