You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
402 B
19 lines
402 B
package model |
|
|
|
// consts |
|
const ( |
|
ActUpdateExp = "updateExp" |
|
ActUpdateLevel = "updateLevel" |
|
ActUpdateFace = "updateFace" |
|
ActUpdateMoral = "updateMoral" |
|
ActUpdateUname = "updateUname" |
|
) |
|
|
|
// NotifyInfo notify info. |
|
type NotifyInfo struct { |
|
Uname string `json:"uname"` |
|
Mid int64 `json:"mid"` |
|
Type string `json:"type"` |
|
NewName string `json:"newName"` |
|
Action string `json:"action"` |
|
}
|
|
|