13 lines
145 B
Go
13 lines
145 B
Go
package models
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type PlaceImage struct {
|
|
ID uuid.UUID
|
|
PlaceID uuid.UUID
|
|
ImageURL string
|
|
Notes string
|
|
}
|