Files
b2b/app/view/emails.go
2026-03-10 09:02:57 +01:00

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
}