16 lines
271 B
Go
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"`
|
|
}
|