package api
type Tag struct {
Name string
CreatorID int
}
type TagUpsert struct {
CreatorID int `json:"-"`
type TagFind struct {
type TagDelete struct {
Name string `json:"name"`