guide.go 213 B

1234567891011
  1. package guide
  2. type Interest struct {
  3. ID int `json:"-"`
  4. Name string `json:"name"`
  5. }
  6. type InterestTM struct {
  7. Interests []*Interest `json:"interests,omitempty"`
  8. FeedType int `json:"feed_type"`
  9. }