memos/api/tag.go
boojack e4a8a4d708
feat: tag table (#811)
* feat: tag table

* chore: update

* chore: update
2022-12-21 19:22:32 +08:00

21 lines
226 B
Go

package api
type Tag struct {
Name string
CreatorID int
}
type TagUpsert struct {
Name string
CreatorID int
}
type TagFind struct {
CreatorID int
}
type TagDelete struct {
Name string
CreatorID int
}