Added rabbitmqMailMessage struct

master
Alex 2021-07-12 20:28:42 +02:00
parent 0b3427b1e5
commit 22f0ef0c06
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package structs
import "encoding/json"
type RabbitmqMailMessage struct {
Mail string `json:"m"`
TemplateId int `json:"t"`
LanguageId int `json:"l"`
BodyData *json.RawMessage `json:"d"`
}