package dto type LoginForm struct { Username string `form:"username"` Password string `form:"password"` } type ChangePasswordForm struct { OldPassword string `form:"old_password"` NewPassword string `form:"new_password"` }