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