go-webdav/carddav/carddav.go
2020-01-17 17:09:23 +01:00

27 lines
326 B
Go

package carddav
import (
"encoding/xml"
"github.com/emersion/go-vcard"
)
type AddressBook struct {
Href string
Description string
}
type AddressBookQuery struct {
Props []string
}
type AddressBookMultiGet struct {
Hrefs []string
Props []string
}
type AddressObject struct {
Href string
Card vcard.Card
}