You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sonic/model/dto/wp/category.go

14 lines
502 B
Go

package wp
type CategoryDTO struct {
ID int32 `json:"id"`
Count int32 `json:"count"`
Description string `json:"description"`
Link string `json:"link"`
Name string `json:"name"`
Slug string `json:"slug"`
Taxonomy string `json:"taxonomy"`
Parent int32 `json:"parent"`
Meta map[string]interface{} `json:"meta"`
}