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 }