Updated BodyData in RabbitmqMailMessage struct

master
Alex 2021-08-01 15:04:37 +02:00
parent bad8843b83
commit 8c0f976ac4
1 changed files with 4 additions and 4 deletions

View File

@ -3,8 +3,8 @@ 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"`
Mail string `json:"m"`
TemplateId int `json:"t"`
LanguageId int `json:"l"`
BodyData json.RawMessage `json:"d"`
}