Interactive/pkg/internal/models/metrics.go
2024-07-16 16:52:00 +08:00

8 lines
217 B
Go

package models
type PostMetric struct {
ReplyCount int64 `json:"reply_count"`
ReactionCount int64 `json:"reaction_count"`
ReactionList map[string]int64 `json:"reaction_list,omitempty"`
}