2019-04-22 02:59:20 +00:00

12 lines
213 B
Go

package guide
type Interest struct {
ID int `json:"-"`
Name string `json:"name"`
}
type InterestTM struct {
Interests []*Interest `json:"interests,omitempty"`
FeedType int `json:"feed_type"`
}