import { WidgetType } from "../types/WidgetType"; class Widget { WidgetType!: WidgetType | null; WidgetName!: string | null; CalcType!: string | null; Value!: string | null; EntityName!: string | null; EntityId!: string | null; Group!: string | null; } export default Widget