memos/api/tag.go
2022-12-28 20:22:52 +08:00

21 lines
237 B
Go

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