mirror of
https://github.com/emersion/go-imap
synced 2026-07-01 16:54:39 +00:00
15 lines
315 B
Go
15 lines
315 B
Go
package imap
|
|
|
|
// NamespaceData is the data returned by the NAMESPACE command.
|
|
type NamespaceData struct {
|
|
Personal []NamespaceDescriptor
|
|
Other []NamespaceDescriptor
|
|
Shared []NamespaceDescriptor
|
|
}
|
|
|
|
// NamespaceDescriptor describes a namespace.
|
|
type NamespaceDescriptor struct {
|
|
Prefix string
|
|
Delim rune
|
|
}
|