21 lines
290 B
Go
21 lines
290 B
Go
package view
|
|
|
|
type EmailLayout[T any] struct {
|
|
LangID uint
|
|
Data T
|
|
}
|
|
|
|
type EmailVerificationData struct {
|
|
VerificationURL string
|
|
}
|
|
|
|
type EmailAdminNotificationData struct {
|
|
UserName string
|
|
UserEmail string
|
|
BaseURL string
|
|
}
|
|
|
|
type EmailPasswordResetData struct {
|
|
ResetURL string
|
|
}
|