followEvent.go 218 B

123456789101112
  1. package eventmodels
  2. // 关注事件
  3. type FollowEventContent struct {
  4. UserBasic
  5. EventBasic
  6. ChannelName string `json:"channel"` // 渠道名称
  7. }
  8. func (e *FollowEventContent) EventName() string {
  9. return "Follow"
  10. }