22 lines
320 B
Go
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
|
|
}
|
|
|