dumb/data/annotation.go
2024-03-04 20:43:46 +01:00

16 lines
273 B
Go

package data
type AnnotationsResponse struct {
Response struct {
Referent struct {
Annotations []struct {
Body Annotation `json:"body"`
} `json:"annotations"`
} `json:"referent"`
} `json:"response"`
}
type Annotation struct {
HTML string `json:"html"`
}