Interactive/pkg/internal/models/metrics.go

8 lines
237 B
Go
Raw Normal View History

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