mirror of
https://github.com/writeas/go-writeas.git
synced 2025-07-26 20:38:13 +00:00
9 lines
219 B
Go
9 lines
219 B
Go
package writeas
|
|
|
|
// Category represents a post tag with additional metadata, like a title and slug.
|
|
type Category struct {
|
|
Hashtag string `json:"hashtag"`
|
|
Slug string `json:"slug"`
|
|
Title string `json:"title"`
|
|
}
|