Files
sendico/frontend/pweb/lib/models/report/chart_point.dart
2026-02-21 21:55:20 +03:00

7 lines
104 B
Dart

class ChartPoint<T> {
final T key;
final double value;
const ChartPoint(this.key, this.value);
}