Files
sendico/api/pkg/model/commentp.go
Stephan D 62a6631b9a
All checks were successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
service backend
2025-11-07 18:35:26 +01:00

9 lines
243 B
Go

package model
import "go.mongodb.org/mongo-driver/bson/primitive"
type CommentPreview struct {
TaskRef primitive.ObjectID `json:"taskRef" bson:"taskRef"`
CommentsCount int `json:"commentsCount" bson:"commentsCount"`
}