mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-16 04:13:12 +00:00
19 lines
273 B
Go
19 lines
273 B
Go
package api
|
|
|
|
type ShortcutOrganizer struct {
|
|
ShortcutID int
|
|
UserID int
|
|
Pinned bool
|
|
}
|
|
|
|
type ShortcutOrganizerFind struct {
|
|
ShortcutID int
|
|
UserID int
|
|
}
|
|
|
|
type ShortcutOrganizerUpsert struct {
|
|
ShortcutID int
|
|
UserID int
|
|
Pinned bool `json:"pinned"`
|
|
}
|