Macrame/be/app/structs/device-struct.go
2025-03-23 18:22:36 +01:00

11 lines
184 B
Go

package structs
type Settings struct {
Name string `json:"name"`
Type string `json:"type"`
}
type RemoteWebhook struct {
Event string `json:"event"`
Data string `json:"data"`
}