mirror of
https://github.com/usememos/memos.git
synced 2025-01-06 23:36:31 +03:00
21 lines
237 B
Go
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
|
|
}
|