Shioriko/pkg/models/item.go

19 lines
356 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 {
ID string `json:"id"`
ImagePath string `json:"image_path"`
Tags []string `json:"tags"`
}