contentserver/server/repo/content/item.go
2013-08-22 18:38:50 +02:00

14 lines
171 B
Go

package content
import ()
type Item struct {
Id string `json:"id"`
Name string `json:"name"`
URI string `json:"URI"`
}
func NewItem() *Item {
return new(Item)
}