mirror of
https://github.com/usememos/memos.git
synced 2025-01-09 13:50:24 +08:00
20 lines
251 B
Go
20 lines
251 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 `json:"name"`
|
|
CreatorID int
|
|
}
|