12 lines
244 B
Go
12 lines
244 B
Go
package models
|
|
|
|
type AnthroveTag struct {
|
|
Name string `json:"name" format:"string"`
|
|
Type string `json:"type" format:"string"`
|
|
}
|
|
|
|
type TagsWithFrequency struct {
|
|
Frequency int64 `json:"frequency"`
|
|
Tags AnthroveTag `json:"tags"`
|
|
}
|