spaceapi-ccc-de/backend/spaceurl.go
2019-03-31 11:52:40 +02:00

8 lines
184 B
Go

package main
type SpaceUrl struct {
Id string `json:"id"`
Url string `json:"url"`
Validated bool `json:"validated"`
LastUpdated int64 `json:"lastUpdated"`
}