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
SoXX 6cabcf9beb refactor(models): reorganized structs
Signed-off-by: SoXX <soxx@fenpa.ws>
2024-05-31 14:21:51 +02:00

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"`
}