initial commit
This commit is contained in:
21
internal/domain/bookmark/specialist_bookmark.go
Normal file
21
internal/domain/bookmark/specialist_bookmark.go
Normal file
@@ -0,0 +1,21 @@
|
||||
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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user