2024-07-13 23:16:40 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
type PostMetric struct {
|
2024-07-16 16:52:00 +08:00
|
|
|
ReplyCount int64 `json:"reply_count"`
|
|
|
|
ReactionCount int64 `json:"reaction_count"`
|
2024-07-13 23:16:40 +08:00
|
|
|
ReactionList map[string]int64 `json:"reaction_list,omitempty"`
|
|
|
|
}
|