[PD1] forgot to add the client structures

This commit is contained in:
Tiago Sousa 2024-04-17 19:56:30 +01:00
parent c57c093867
commit 1e12bcde6c
Signed by: tiago
SSH key fingerprint: SHA256:odOD9vln9U7qNe1R8o3UCbE3jkQCkr5/q5mgd5hwua0

View file

@ -0,0 +1,15 @@
package client
import "time"
type Content struct {
Subject []byte
Body []byte
}
type RecievedMessage struct {
FromUID string
ToUID string
Content Content
Timestamp time.Time
}