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

22 lines
320 B
Go

package bookmark
import (
"encoding/json"
"github.com/google/uuid"
)
type SpecialistBookmark struct {
ID uuid.UUID
ProfileID uuid.UUID
Profile BookmarkedProfile
}
type BookmarkedProfile struct {
ID uuid.UUID
Name string
Description string
RestOfFields json.RawMessage
}