mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 00:57:33 +00:00
16 lines
255 B
Go
16 lines
255 B
Go
package domain
|
|
|
|
import "github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
|
|
|
type MailTemplate struct {
|
|
models.ObjectRoot
|
|
|
|
State PolicyState
|
|
Default bool
|
|
Template []byte
|
|
}
|
|
|
|
func (m *MailTemplate) IsValid() bool {
|
|
return m.Template != nil
|
|
}
|