bilibili-backup/app/service/main/passport/model/pwd.go

14 lines
236 B
Go
Raw Normal View History

2019-04-22 10:59:20 +08:00
package model
// HistoryPwdCheckParam history pwd check param
type HistoryPwdCheckParam struct {
Mid int64 `form:"mid"`
Pwd string `form:"pwd"`
}
// HistoryPwd history pwd
type HistoryPwd struct {
OldPwd string
OldSalt string
}