cb_prestige_qr/lib/features/analysis/domain/entities/analysis_summary.dart

24 lines
547 B
Dart
Raw Permalink Normal View History

2026-04-09 06:47:03 +00:00
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;
}