mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 03:54:21 +00:00
23 lines
538 B
Go
23 lines
538 B
Go
|
package domain
|
||
|
|
||
|
import "github.com/caos/zitadel/internal/eventstore/models"
|
||
|
|
||
|
type MailText struct {
|
||
|
models.ObjectRoot
|
||
|
|
||
|
State PolicyState
|
||
|
Default bool
|
||
|
MailTextType string
|
||
|
Language string
|
||
|
Title string
|
||
|
PreHeader string
|
||
|
Subject string
|
||
|
Greeting string
|
||
|
Text string
|
||
|
ButtonText string
|
||
|
}
|
||
|
|
||
|
func (m *MailText) IsValid() bool {
|
||
|
return m.MailTextType != "" && m.Language != "" && m.Title != "" && m.PreHeader != "" && m.Subject != "" && m.Greeting != "" && m.Text != "" && m.ButtonText != ""
|
||
|
}
|