attachment.go

1package message
2
3type Attachment struct {
4	FilePath string
5	FileName string
6	MimeType string
7	Content  []byte
8}