mirror of
https://github.com/usememos/memos.git
synced 2024-11-11 17:28:12 +08:00
21 lines
265 B
Go
21 lines
265 B
Go
package api
|
|
|
|
type MemoOrganizer struct {
|
|
ID int
|
|
|
|
// Domain specific fields
|
|
MemoID int
|
|
UserID int
|
|
Pinned bool
|
|
}
|
|
|
|
type MemoOrganizerFind struct {
|
|
MemoID int
|
|
UserID int
|
|
}
|
|
|
|
type MemoOrganizerUpsert struct {
|
|
MemoID int
|
|
UserID int
|
|
Pinned bool `json:"pinned"`
|
|
}
|