mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 23:58:04 -05:00
14 lines
236 B
Go
14 lines
236 B
Go
|
|
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
|
||
|
|
}
|