mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-13 23:49:05 -06:00
11 lines
144 B
Go
11 lines
144 B
Go
package jmap
|
|
|
|
import "time"
|
|
|
|
type Email struct {
|
|
From string
|
|
Subject string
|
|
HasAttachments bool
|
|
Received time.Time
|
|
}
|