Files
base/internal/domain/asset/comment.go
2026-04-10 18:25:21 +03:30

23 lines
282 B
Go

package asset
import (
"time"
"github.com/google/uuid"
)
type Comment struct {
ID uuid.UUID
AssetID uuid.UUID
Content string
CreatedAt time.Time
UpdatedAt time.Time
WriterID uuid.UUID
WriterType string
ParentID *uuid.UUID
Replies []Comment
}