15 lines
196 B
Go
15 lines
196 B
Go
package client
|
|
|
|
import "time"
|
|
|
|
type Content struct {
|
|
Subject []byte
|
|
Body []byte
|
|
}
|
|
|
|
type RecievedMessage struct {
|
|
FromUID string
|
|
ToUID string
|
|
Content Content
|
|
Timestamp time.Time
|
|
}
|