Files
3ybactuk-marketplace-go-ser…/comments/internal/domain/entity/comment.go
2025-07-28 14:58:08 +03:00

12 lines
145 B
Go

package entity
import "time"
type Comment struct {
ID int64
UserID int64
SKU int64
CreatedAt time.Time
Text string
}