mirror of
https://github.com/1f349/go-webdav.git
synced 2024-12-22 16:24:14 +00:00
27 lines
364 B
Go
27 lines
364 B
Go
package carddav
|
|
|
|
import (
|
|
"github.com/emersion/go-vcard"
|
|
)
|
|
|
|
type AddressBook struct {
|
|
Href string
|
|
Name string
|
|
Description string
|
|
MaxResourceSize int64
|
|
}
|
|
|
|
type AddressBookQuery struct {
|
|
Props []string
|
|
}
|
|
|
|
type AddressBookMultiGet struct {
|
|
Hrefs []string
|
|
Props []string
|
|
}
|
|
|
|
type AddressObject struct {
|
|
Href string
|
|
Card vcard.Card
|
|
}
|