Shioriko/pkg/models/item.go

25 lines
540 B
Go
Raw Normal View History

2021-05-09 15:07:23 +00:00
package models
type TagTypeListItem struct {
ID uint `json:"id"`
Name string `json:"name"`
}
type TagListItem struct {
ID string `json:"id"`
Name string `json:"name"`
TagType string `json:"tagType"`
}
type PostListItem struct {
2021-05-11 12:21:11 +00:00
ID string `json:"id"`
ImagePath string `json:"image_path"`
ImageThumbnailPath string `json:"thumbnail_path"`
Tags []string `json:"tags"`
2021-05-09 15:07:23 +00:00
}
2021-05-11 18:22:46 +00:00
type PostSimilarityListItem struct {
ID string `json:"id"`
Distance int `json:"distance"`
}