mirror of
https://github.com/aykhans/slash-e.git
synced 2025-07-06 21:22:36 +00:00
feat: init project
This commit is contained in:
18
api/shortcut_organizer.go
Normal file
18
api/shortcut_organizer.go
Normal file
@ -0,0 +1,18 @@
|
||||
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"`
|
||||
}
|
Reference in New Issue
Block a user