20 lines
325 B
Go
20 lines
325 B
Go
package main
|
|
|
|
type MultiStatus struct {
|
|
Responses []Response `xml:"response"`
|
|
}
|
|
|
|
type Response struct {
|
|
Href string `xml:"href"`
|
|
PropStat []PropStat `xml:"propstat"`
|
|
}
|
|
|
|
type PropStat struct {
|
|
Prop Prop `xml:"prop"`
|
|
Status string `xml:"status"`
|
|
}
|
|
|
|
type Prop struct {
|
|
DisplayName string `xml:"displayname"`
|
|
}
|