service/apollostruct/emailconfig.go

12 lines
222 B
Go

package apollostruct
type EmailContentConfig struct {
Subject string `json:"subject"`
Text string `json:"text"`
}
type EmailInfoConfig struct {
Address string `json:"address"`
Password string `json:"password"`
}