19 lines
243 B
Go
19 lines
243 B
Go
package models
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type Place struct {
|
|
ID uuid.UUID
|
|
Name string
|
|
Latitude float64
|
|
Longitude float64
|
|
Address string
|
|
LocationType string
|
|
WomensSpace bool
|
|
Wudu bool
|
|
WebsiteURL string
|
|
Notes string
|
|
}
|