9 lines
243 B
Go
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"`
|
|
}
|