Files
sendico/api/edge/bff/interface/api/srequest/password.go
2026-02-28 00:39:20 +01:00

16 lines
271 B
Go

package srequest
type ChangePassword struct {
Old string `json:"old"`
New string `json:"new"`
DeviceID string `json:"deviceId"`
}
type ResetPassword struct {
Password string `json:"password"`
}
type ForgotPassword struct {
Login string `json:"login"`
}