mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
chore: address comments
This commit is contained in:
10
api/memo.go
10
api/memo.go
@ -18,14 +18,14 @@ type MemoCreate struct {
|
||||
type MemoPatch struct {
|
||||
Id int
|
||||
|
||||
Content *string
|
||||
RowStatus *string
|
||||
Content *string `json:"content"`
|
||||
RowStatus *string `json:"rowStatus"`
|
||||
}
|
||||
|
||||
type MemoFind struct {
|
||||
Id *int
|
||||
CreatorId *int
|
||||
RowStatus *string
|
||||
Id *int `json:"id"`
|
||||
CreatorId *int `json:"creatorId"`
|
||||
RowStatus *string `json:"rowStatus"`
|
||||
}
|
||||
|
||||
type MemoDelete struct {
|
||||
|
Reference in New Issue
Block a user