Files
receipt-wrangler-api/internal/models/widget.go
2025-01-21 20:35:48 +00:00

13 lines
352 B
Go

package models
import "encoding/json"
type Widget struct {
BaseModel
Name string `json:"name"`
Dashboard Dashboard `json:"-"`
DashboardId uint `gorm:"not null;" json:"dashboardId"`
WidgetType WidgetType `gorm:"not null;" json:"widgetType"`
Configuration json.RawMessage `json:"configuration"`
}