| 1234567891011121314151617181920212223242526272829 |
- package models
- import "errors"
- var ErrInvalidEmailCode = errors.New("Invalid or expired email code")
- type SendEmailCommand struct {
- To []string
- Template string
- Data map[string]interface{}
- Massive bool
- Info string
- }
- type SendWebhook struct {
- Url string
- User string
- Password string
- Body string
- }
- type SendResetPasswordEmailCommand struct {
- User *User
- }
- type ValidateResetPasswordCodeQuery struct {
- Code string
- Result *User
- }
|