go-webdav/elements.go

11 lines
166 B
Go
Raw Normal View History

2020-01-14 17:51:17 +00:00
package webdav
import (
"encoding/xml"
)
2020-01-14 21:19:54 +00:00
type currentUserPrincipal struct {
2020-01-14 22:13:23 +00:00
XMLName xml.Name `xml:"DAV: current-user-principal"`
Href string `xml:"href"`
2020-01-14 17:51:17 +00:00
}