mirror of
https://github.com/yourselfhosted/slash.git
synced 2025-06-05 22:09:34 +02: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"`
|
|
}
|