// Package payload defines all the payload structures used in tasks
package payload

type SendWxPayload struct {
	Ip     string   `json:"ip"`
	Number int      `json:"number"`
	WxList []WxList `json:"wx_list"`
}

type WxList struct {
	Port     string `json:"port"`
	Wxid     string `json:"wxid"`
	Nickname string `json:"nickname"`
}

type SendWxOnTimeoutPayload struct {
}