This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
otter-space-sdk/pkg/models/tag.go

12 lines
244 B
Go
Raw Normal View History

2024-02-16 14:16:50 +00:00
package models
type AnthroveTag struct {
Name string `json:"name" format:"string"`
Type string `json:"type" format:"string"`
2024-02-16 14:16:50 +00:00
}
type TagsWithFrequency struct {
Frequency int64 `json:"frequency"`
Tags AnthroveTag `json:"tags"`
}