cb_prestige_qr/lib/features/analysis/domain/entities/analysis_summary.dart
2026-04-09 13:17:03 +06:30

24 lines
547 B
Dart

class AnalysisSummary {
const AnalysisSummary({
required this.users,
required this.activeUsers,
required this.scans,
required this.successRate,
required this.pointsUsed,
});
/// Number of users for the selected range (not all-time).
final int users;
/// Active users for the selected range (not all-time).
final int activeUsers;
/// Scans for the selected range (not all-time).
final int scans;
final double successRate;
/// Points used for the selected range (not all-time).
final int pointsUsed;
}