25 lines
309 B
Go
25 lines
309 B
Go
package carddav
|
|
|
|
import (
|
|
"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
|
|
}
|