summaryrefslogtreecommitdiff
path: root/struct.go
diff options
context:
space:
mode:
Diffstat (limited to 'struct.go')
-rw-r--r--struct.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/struct.go b/struct.go
index 9ea6346..bcc94c8 100644
--- a/struct.go
+++ b/struct.go
@@ -52,3 +52,10 @@ type Flash struct {
Success []interface{}
Error []interface{}
}
+
+type ChangePasswordReq struct {
+ Email string
+ Password string
+ ConfirmPassword string
+ NewPassword string
+}