mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-19 21:46:19 +00:00
13 lines
281 B
Go
13 lines
281 B
Go
package v1
|
|
|
|
type ActivityShorcutCreatePayload struct {
|
|
ShortcutID int `json:"shortcutId"`
|
|
}
|
|
|
|
type ActivityShorcutViewPayload struct {
|
|
ShortcutID int `json:"shortcutId"`
|
|
IP string `json:"ip"`
|
|
Referer string `json:"referer"`
|
|
UserAgent string `json:"userAgent"`
|
|
}
|