mirror of https://github.com/go-sonic/sonic.git
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.
14 lines
502 B
Go
14 lines
502 B
Go
1 year ago
|
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"`
|
||
|
}
|