export interface GraphDatasetModel {
    name: string;
    chartType?: string;
    values: number[];
}
