mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-20 05:51:25 +00:00
13 lines
283 B
Go
13 lines
283 B
Go
package v1
|
|
|
|
type ActivityShorcutCreatePayload struct {
|
|
ShortcutID int32 `json:"shortcutId"`
|
|
}
|
|
|
|
type ActivityShorcutViewPayload struct {
|
|
ShortcutID int32 `json:"shortcutId"`
|
|
IP string `json:"ip"`
|
|
Referer string `json:"referer"`
|
|
UserAgent string `json:"userAgent"`
|
|
}
|