mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
12 lines
195 B
Go
12 lines
195 B
Go
package system
|
|
|
|
// ResetPasswordModel 重置密码模型
|
|
type ResetPasswordModel struct {
|
|
// 用户ID
|
|
UserID string
|
|
// 新密码
|
|
NewPassword string
|
|
// 确认密码
|
|
ConfirmPassword string
|
|
}
|