mirror of
https://github.com/Receipt-Wrangler/receipt-wrangler-api.git
synced 2026-01-20 01:50:03 -06:00
13 lines
352 B
Go
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"`
|
|
}
|