summaryrefslogtreecommitdiffhomepage
path: root/internal/message/attachment.go
blob: 6e89f001436ed120d52c08c05ade8c8a741cfb7a (plain)
1
2
3
4
5
6
7
8
package message

type Attachment struct {
	FilePath string
	FileName string
	MimeType string
	Content  []byte
}