memos/api/tag.go

21 lines
226 B
Go
Raw Normal View History

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
}