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.
|
package model |
|
|
|
import ( |
|
"encoding/json" |
|
|
|
rplmdl "go-common/app/interface/main/reply/model/reply" |
|
) |
|
|
|
// ReplyHot reply hot |
|
type ReplyHot struct { |
|
Page json.RawMessage `json:"page"` |
|
Replies []*rplmdl.Reply `json:"replies"` |
|
}
|
|
|