mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 00:01:14 +00:00
13 lines
272 B
Go
13 lines
272 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Mailbox struct {
|
|
Name string `json:"name"`
|
|
Attrs []string `json:"attributes"`
|
|
UIDValidity uint32 `json:"uid_validity"`
|
|
HighestModSeq uint64 `json:"highestmodseq"`
|
|
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|