notify.go 261 B

1234567891011121314
  1. package model
  2. //const
  3. const (
  4. AccountNotifyUpdatePendant = "updatePendant"
  5. AccountNotifyUpdateMedal = "updateMedal"
  6. )
  7. // AccountNotify .
  8. type AccountNotify struct {
  9. UID int64 `json:"mid"`
  10. Type string `json:"type"`
  11. Action string `json:"action"`
  12. }