dumb/data/annotation.go

16 lines
273 B
Go
Raw Normal View History

package data
type AnnotationsResponse struct {
Response struct {
Referent struct {
2024-03-04 20:43:46 +01:00
Annotations []struct {
Body Annotation `json:"body"`
} `json:"annotations"`
} `json:"referent"`
} `json:"response"`
}
type Annotation struct {
2024-03-04 20:43:46 +01:00
HTML string `json:"html"`
}